ApplePayPostalAddress constructor

  1. @JsonSerializable(explicitToJson: true)
const ApplePayPostalAddress({
  1. String? city,
  2. String? country,
  3. String? postalCode,
  4. String? state,
  5. String? street,
  6. String? isoCountryCode,
  7. String? subAdministrativeArea,
  8. String? subLocality,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory ApplePayPostalAddress({
  String? city,
  String? country,
  String? postalCode,
  String? state,
  String? street,
  String? isoCountryCode,
  String? subAdministrativeArea,
  String? subLocality,
}) = _ApplePayPostalAddress;