get method
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);
}