AuthenticationCodeTypeFirebaseAndroid constructor

const AuthenticationCodeTypeFirebaseAndroid({
  1. required String nonce,
  2. required int length,
})

An authentication code is delivered via Firebase Authentication to the official Android application

Implementation

const AuthenticationCodeTypeFirebaseAndroid({
  required this.nonce,
  required this.length,
});