Input$ValidateSmsCodeInput constructor

Input$ValidateSmsCodeInput({
  1. required int code,
  2. String? email,
  3. Input$IPhoneInput? phone,
  4. required Input$TargetACIInput target,
})

Implementation

factory Input$ValidateSmsCodeInput({
  required int code,
  String? email,
  Input$IPhoneInput? phone,
  required Input$TargetACIInput target,
}) =>
    Input$ValidateSmsCodeInput._({
      r'code': code,
      if (email != null) r'email': email,
      if (phone != null) r'phone': phone,
      r'target': target,
    });