findDataItemOnURIPath method
Find a specific DataItem on specific pathURI
This method returns an optional DataItem indicating whether the DataItem can be found.
Implementation
Future<DataItem?> findDataItemOnURIPath({required Uri pathURI}) async {
Map? result =
await channel.invokeMethod("findDataItem", pathURI.toString());
return DataItem.fromJson((result ?? {}).toMapStringDynamic());
}