copyWith method

  1. @override
AuthenticationCodeTypeFirebaseAndroid copyWith({
  1. String? nonce,
  2. int? length,
})
override

Implementation

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