AuthenticationCodeTypeMissedCall constructor

const AuthenticationCodeTypeMissedCall({
  1. required String phoneNumberPrefix,
  2. required int length,
})

An authentication code is delivered by an immediately canceled call to the specified phone number. The last digits of the phone number that calls are the code that must be entered manually by the user

Implementation

const AuthenticationCodeTypeMissedCall({
  required this.phoneNumberPrefix,
  required this.length,
});