CreateItemRequest constructor

CreateItemRequest({
  1. String? parentPath,
  2. String? itemName,
  3. String? kind,
  4. bool? existsError,
})

Implementation

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