AuthenticationCodeInfo constructor

AuthenticationCodeInfo({
  1. required String phoneNumber,
  2. AuthenticationCodeType? type,
  3. AuthenticationCodeType? nextType,
  4. required int timeout,
})

Implementation

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