OtpAuthenticator.phone constructor

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

Implementation

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