ImportHumanUserRequest_HashedPassword constructor

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

Implementation

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