AddressDetails constructor
- @JsonSerializable(explicitToJson: true)
Implementation
@JsonSerializable(explicitToJson: true)
const factory AddressDetails({
/// The customer's full name
String? name,
/// The customer's address
Address? address,
/// the customer's phonumber
String? phoneNumber,
}) = _AddressDetails;