getAppIOInfo static method

  1. @Deprecated('Use appIOInfo getter instead')
List<MountInfo> getAppIOInfo()

Get app I/O info

Returns

  • A list of MountInfo structures, each providing details about a different storage mount point used by the application.

Implementation

@Deprecated('Use appIOInfo getter instead')
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();
}