HashedPassword constructor

HashedPassword({
  1. String? hash,
  2. bool? changeRequired,
})

Implementation

factory HashedPassword({
  $core.String? hash,
  $core.bool? changeRequired,
}) {
  final result = create();
  if (hash != null) result.hash = hash;
  if (changeRequired != null) result.changeRequired = changeRequired;
  return result;
}