getAppIOInfo static method
Get app I/O info
Returns
- A list of MountInfo structures, each providing details about a different storage mount point used by the application.
Throws
- An exception if it fails.
Implementation
static List<MountInfo> getAppIOInfo() {
final OperationResult resultString = staticMethod('Debug', 'getAppIOInfo');
final List<dynamic> retval = resultString['result'];
return retval.map((dynamic e) => MountInfo.fromJson(e)).toList();
}