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