copyWith method
Implementation
SetRecoveryEmailAddress copyWith({
String? password,
String? newRecoveryEmailAddress,
}) => SetRecoveryEmailAddress(
password: password ?? this.password,
newRecoveryEmailAddress: newRecoveryEmailAddress ?? this.newRecoveryEmailAddress,
);