onresize property
      
      dynamic Function(Event)?
      get
      onresize
      
    
    
    
Implementation
_i2.dynamic Function(_i3.Event)? get onresize =>
    (_i3.Event p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'onresize',
          ),
          r'call',
          [
            this,
            p0,
          ],
        );
      
      set
      onresize
      (dynamic value(Event)?) 
      
    
    
    
Implementation
set onresize(_i2.dynamic Function(_i3.Event)? value) {
  _i4.setProperty(
    this,
    'onresize',
    value == null ? _i6.undefined : _i4.allowInterop(value),
  );
}