ExportHumanUser_HashedPassword constructor

ExportHumanUser_HashedPassword({
  1. String? value,
  2. String? algorithm,
})

Implementation

factory ExportHumanUser_HashedPassword({
  $core.String? value,
  $core.String? algorithm,
}) {
  final $result = create();
  if (value != null) {
    $result.value = value;
  }
  if (algorithm != null) {
    $result.algorithm = algorithm;
  }
  return $result;
}