Input$ResetPasswordForAppInput constructor

Input$ResetPasswordForAppInput({
  1. required String password,
  2. String? token,
  3. int? smsValidationCode,
  4. 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,
    });