getItem method
Gets the parent item of this revision.
@deprecated Use item getter instead.
final item = await revision.getItem();
Implementation
Future<dynamic> getItem() async {
final response = await client.getItemByKref(itemKref.uri);
// Note: We return the raw response here to avoid circular imports.
// The caller can wrap it in an Item if needed.
return response;
}