global property

JsValue global
override

Implementation

JsValue get global {
  if (_global == null) {
    _global = WebJsValue(this, js.context);
    _global!.retain();
  }
  return _global!;
}