AuthSentCode constructor

const AuthSentCode({
  1. required AuthSentCodeTypeBase type,
  2. required String phoneCodeHash,
  3. AuthCodeTypeBase? nextType,
  4. int? timeout,
})

Auth Sent Code constructor.

Implementation

const AuthSentCode({
  required this.type,
  required this.phoneCodeHash,
  this.nextType,
  this.timeout,
}) : super._();