JSString constructor

JSString(
  1. JSStringRef _ref, {
  2. bool autoDispose = true,
})

Implementation

JSString(this._ref, {bool autoDispose = true}) {
  attach(
    JSStringReleaseAddress.cast(),
    _ref.cast(),
    autoDispose: autoDispose,
  );
}