onRemove property

(void Function()?) onRemove

Implementation

void Function()? get onRemove =>
    callMethod(getProperty(this, 'onRemove'), 'bind', [this]);
void onRemove=(void value()?)

Implementation

set onRemove(void Function()? value) {
  setProperty(this, 'onRemove', value == null ? null : allowInterop(value));
}