Input$IPhoneInput constructor

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

Implementation

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