copyWith method

RecoverPassword copyWith({
  1. String? recoveryCode,
  2. String? newPassword,
  3. String? newHint,
})

Implementation

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