AuthenticationCodeTypeFirebaseIos constructor

const AuthenticationCodeTypeFirebaseIos({
  1. required String receipt,
  2. required int pushTimeout,
  3. required int length,
})

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

Implementation

const AuthenticationCodeTypeFirebaseIos({
  required this.receipt,
  required this.pushTimeout,
  required this.length,
});