globalObject property
JSObject
get
globalObject
Gets the global object of a JavaScript execution context.
@result
(JSObject) ctx's global object.
Implementation
JSObject get globalObject {
return JSObject(this, JSContextGetGlobalObject(_ref), autoDispose: false);
}