AuthenticationCodeInfo constructor

const AuthenticationCodeInfo({
  1. required String phoneNumber,
  2. required AuthenticationCodeType type,
  3. AuthenticationCodeType? nextType,
  4. required int timeout,
  5. dynamic extra,
  6. int? clientId,
})

Information about the authentication code that was sent

Implementation

const AuthenticationCodeInfo({
  required this.phoneNumber,
  required this.type,
  this.nextType,
  required this.timeout,
  this.extra,
  this.clientId,
});