onRemove property

void Function()? get onRemove

Implementation

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

Implementation

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