copyWith method
AuthenticationCodeTypeFirebaseAndroid
copyWith({
- FirebaseDeviceVerificationParameters? deviceVerificationParameters,
- int? length,
Implementation
AuthenticationCodeTypeFirebaseAndroid copyWith({
FirebaseDeviceVerificationParameters? deviceVerificationParameters,
int? length,
}) => AuthenticationCodeTypeFirebaseAndroid(
deviceVerificationParameters:
deviceVerificationParameters ?? this.deviceVerificationParameters,
length: length ?? this.length,
);