draw property

(void Function()?) draw

Implementation

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

Implementation

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