item property

Future get item

Gets the parent item of this revision.

final parentItem = await revision.item;

Implementation

Future<dynamic> get item async {
  return client.getItemByKref(itemKref.uri);
}