copyWith method
Implementation
@override
AuthenticationCodeTypeFirebaseAndroid copyWith({
String? nonce,
int? length,
}) =>
AuthenticationCodeTypeFirebaseAndroid(
nonce: nonce ?? this.nonce,
length: length ?? this.length,
);
@override
AuthenticationCodeTypeFirebaseAndroid copyWith({
String? nonce,
int? length,
}) =>
AuthenticationCodeTypeFirebaseAndroid(
nonce: nonce ?? this.nonce,
length: length ?? this.length,
);