onExecute property
EventStream<OnExecuteEvent>
get
onExecute
Fired when file system action is executed from ChromeOS file browser.
Implementation
EventStream<OnExecuteEvent> get onExecute =>
$js.chrome.fileBrowserHandler.onExecute.asStream(($c) => (
String id,
$js.FileHandlerExecuteEventDetails details,
) {
return $c(OnExecuteEvent(
id: id,
details: FileHandlerExecuteEventDetails.fromJS(details),
));
});