OtpAuthenticator.email constructor

const OtpAuthenticator.email({
  1. required String token,
  2. required String code,
  3. required String email,
})

Implementation

const OtpAuthenticator.email({
  required this.token,
  required this.code,
  required String email,
})  : type = 'email',
      value = email;