close property
      
      void Function()
      get
      close
      
    
    
    
Implementation
void Function() get close => () => _i4.callMethod(
      _i4.getProperty(
        this,
        'close',
      ),
      r'call',
      [this],
    );
      
      set
      close
      (void value()) 
      
    
    
    
Implementation
set close(void Function() value) {
  _i4.setProperty(
    this,
    'close',
    _i4.allowInterop(value),
  );
}