null safety

This commit is contained in:
phyothandar
2021-09-10 12:00:08 +06:30
parent a144c945b6
commit 5e672937b5
67 changed files with 901 additions and 896 deletions

View File

@@ -16,7 +16,7 @@ import 'package:provider/provider.dart';
class PackageList extends StatefulWidget {
final bool forCustomer;
const PackageList({Key key, this.forCustomer = true}) : super(key: key);
const PackageList({Key? key, this.forCustomer = true}) : super(key: key);
@override
_PackageListState createState() => _PackageListState();
}