onContextLost property
void Function()?
get
onContextLost
Implementation
void Function()? get onContextLost =>
callMethod(getProperty(this, 'onContextLost'), 'bind', [this]);
set
onContextLost
(void value()?)
Implementation
set onContextLost(void Function()? value) {
setProperty(
this, 'onContextLost', value == null ? null : allowInterop(value));
}