Input$PhoneInput constructor

Input$PhoneInput({
  1. String? number,
  2. String? countryCode,
  3. bool? isValid,
})

Implementation

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