close property

void Function() get close

Implementation

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

Implementation

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