check null safety
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user