CreateSpaceRequest constructor

CreateSpaceRequest({
  1. String? parentPath,
  2. String? spaceName,
  3. bool? existsError,
})

Implementation

factory CreateSpaceRequest({
  $core.String? parentPath,
  $core.String? spaceName,
  $core.bool? existsError,
}) {
  final result = create();
  if (parentPath != null) result.parentPath = parentPath;
  if (spaceName != null) result.spaceName = spaceName;
  if (existsError != null) result.existsError = existsError;
  return result;
}