我喜欢移植到 Dart 的原始 javascript 代码。
hterm.defaultStorage = new lib.Storage.Chrome(chrome.storage.sync);
我努力了
js.context['hterm']['defaultStorage'] =
new js.JsObject(js.context['lib']['Storage']['Chrome'], js.context['chrome']['storage']['sync']);
但这并没有像我预期的那样工作。也许是因为 js.JsObject 返回 dart 对象。我必须使用JsObject.jsify
吗?似乎只jsify
接收飞镖对象的集合。