onsuspend property
dynamic Function(Event)?
get
onsuspend
Occurs if the load operation has been intentionally halted. @param ev The event.
Implementation
_i2.dynamic Function(_i3.Event)? get onsuspend =>
(_i3.Event p0) => _i4.callMethod(
_i4.getProperty(
this,
'onsuspend',
),
r'call',
[
this,
p0,
],
);
set
onsuspend
(dynamic value(Event)?)
Implementation
set onsuspend(_i2.dynamic Function(_i3.Event)? value) {
_i4.setProperty(
this,
'onsuspend',
value == null ? _i6.undefined : _i4.allowInterop(value),
);
}