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