copyWith method
Implementation
RecoverAuthenticationPassword copyWith({
String? recoveryCode,
String? newPassword,
String? newHint,
}) =>
RecoverAuthenticationPassword(
recoveryCode: recoveryCode ?? this.recoveryCode,
newPassword: newPassword ?? this.newPassword,
newHint: newHint ?? this.newHint,
);