getItem method
Gets the parent item of this artifact.
final item = await artifact.getItem();
Implementation
Future<dynamic> getItem() async {
final targetKref = itemKref ?? revisionKref.itemKref;
return client.getItemByKref(targetKref.uri);
}
Gets the parent item of this artifact.
final item = await artifact.getItem();
Future<dynamic> getItem() async {
final targetKref = itemKref ?? revisionKref.itemKref;
return client.getItemByKref(targetKref.uri);
}