get method

Future<FileSystemInfo> get(
  1. String fileSystemId
)

Returns information about a file system with the passed fileSystemId.

Implementation

Future<FileSystemInfo> get(String fileSystemId) async {
  var $res = await promiseToFuture<$js.FileSystemInfo>(
      $js.chrome.fileSystemProvider.get(fileSystemId));
  return FileSystemInfo.fromJS($res);
}