PlatformPayShippingContact constructor
- @JsonSerializable(explicitToJson: true)
- String? emailAddress,
- required ApplePayContactName name,
- required ApplePayPostalAddress postalAddress,
- String? phoneNumber,
Implementation
@JsonSerializable(explicitToJson: true)
const factory PlatformPayShippingContact({
/// Email address of the shipping contact
String? emailAddress,
/// Name of shipping contact
required ApplePayContactName name,
/// Postal address of shipping contact
required ApplePayPostalAddress postalAddress,
///Phone Number of the shipping contact
String? phoneNumber,
}) = _PlatformPayShippingContact;