getItem method
inherited
Gets an item by its path components.
parentPath is the space path containing the item.
itemName is the item name.
kind is the item kind.
Implementation
Future<ItemResponse> getItem(
String parentPath,
String itemName,
String kind,
) async {
final request = GetItemRequest()
..parentPath = parentPath
..itemName = itemName
..kind = kind;
return stub.getItem(request, options: callOptions);
}