Address constructor

Address({
  1. String? countryCode,
  2. String? county,
  3. String? description,
  4. String? municipality,
  5. String? number,
  6. String? other,
  7. String? postalCode,
  8. String? province,
  9. String? street,
  10. required AddressType type,
})

Implementation

factory Address({
  String? countryCode,
  String? county,
  String? description,
  String? municipality,
  String? number,
  String? other,
  String? postalCode,
  String? province,
  String? street,
  required AddressType type,
}) = _Address;