I updated flutter stable version 2.2.1 (Nullable feature enabled). When I write constructor of the class as following code, I got error as following image shows. Please help me to resolve this.
class FlavorBanner extends StatelessWidget {
final Widget child ;
late BannerConfig bannerConfig;
FlavorBanner({@required this.child});
}