unref property

void Function() get unref

Implementation

void Function() get unref => () => _i3.callMethod(
      _i3.getProperty(
        this,
        'unref',
      ),
      r'call',
      [this],
    );
set unref (void value())

Implementation

set unref(void Function() value) {
  _i3.setProperty(
    this,
    'unref',
    _i3.allowInterop(value),
  );
}