Input$ResetPasswordForAppInput constructor
Input$ResetPasswordForAppInput({
- required String password,
- String? token,
- int? smsValidationCode,
- Input$IPhoneInput? phone,
Implementation
factory Input$ResetPasswordForAppInput({
required String password,
String? token,
int? smsValidationCode,
Input$IPhoneInput? phone,
}) =>
Input$ResetPasswordForAppInput._({
r'password': password,
if (token != null) r'token': token,
if (smsValidationCode != null) r'smsValidationCode': smsValidationCode,
if (phone != null) r'phone': phone,
});