copyWith method

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

Implementation

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