Input$FullAddressOwnerPhoneInput constructor

Input$FullAddressOwnerPhoneInput({
  1. String? number,
  2. String? countryCode,
})

Implementation

factory Input$FullAddressOwnerPhoneInput({
  String? number,
  String? countryCode,
}) =>
    Input$FullAddressOwnerPhoneInput._({
      if (number != null) r'number': number,
      if (countryCode != null) r'countryCode': countryCode,
    });