check null safety

This commit is contained in:
tzw
2021-09-10 14:27:38 +06:30
parent a144c945b6
commit 7670779b03
57 changed files with 620 additions and 626 deletions

View File

@@ -1,13 +1,14 @@
class DeliveryAddress {
String id;
String fullName;
String addressLine1;
String addressLine2;
String city;
String state;
String phoneNumber;
String? id;
String? fullName;
String? addressLine1;
String? addressLine2;
String? city;
String? state;
String? phoneNumber;
bool isDefault;
String userID;
String? userID;
DeliveryAddress(
{this.id,
this.fullName,