The following code is flagged as "convert 'foo' to a super parameter": ``` class A { A(this.foo); String? foo; } class B extends A { B(String foo) : super(foo); } ``` But doing that conversion changes the nullability of the argument to `B`'s constructor.