draw property

void Function()? get draw

Implementation

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

Implementation

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