错误:参数“key”的值不能为“null”,因为其类型不同,但隐式默认值为“null”。([aplikasi_scan_plat_nomor] lib\screen\home.dart:10处缺少参数的默认值)
class Home extends StatefulWidget { const Home({Key key}) : super(key: key);
pkwftd7m1#
键可以为空,您可以
class Home extends StatefulWidget { const Home({Key? key}) : super(key: key);
或者只是
class Home extends StatefulWidget { const Home({super.key});
如果你要求的话
class Home extends StatefulWidget { const Home({required Key key}) : super(key: key);
1条答案
按热度按时间pkwftd7m1#
键可以为空,您可以
或者只是
如果你要求的话