AuthResendCode constructor

const AuthResendCode({
  1. required String phoneNumber,
  2. required String phoneCodeHash,
  3. String? reason,
})

Auth Resend Code constructor.

Implementation

const AuthResendCode({
  required this.phoneNumber,
  required this.phoneCodeHash,
  this.reason,
}) : super._();