Input$ValidateSmsCodeInput constructor
Input$ValidateSmsCodeInput({
- required int code,
- String? email,
- Input$IPhoneInput? phone,
- 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,
});