onAdd property

(void Function()?) onAdd

Implementation

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

Implementation

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