ref property

void Function() get ref

Implementation

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

Implementation

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