copyWith method
Implementation
SetPassword copyWith({
String? oldPassword,
String? newPassword,
String? newHint,
bool? setRecoveryEmailAddress,
String? newRecoveryEmailAddress,
}) => SetPassword(
oldPassword: oldPassword ?? this.oldPassword,
newPassword: newPassword ?? this.newPassword,
newHint: newHint ?? this.newHint,
setRecoveryEmailAddress: setRecoveryEmailAddress ?? this.setRecoveryEmailAddress,
newRecoveryEmailAddress: newRecoveryEmailAddress ?? this.newRecoveryEmailAddress,
);