copyWith method

AuthenticationCodeTypeFirebaseAndroid copyWith({
  1. FirebaseDeviceVerificationParameters? deviceVerificationParameters,
  2. int? length,
})

Implementation

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