getTile property

(Node? Function(Point? tileCoord, num? zoom, Document? ownerDocument)?) getTile

Implementation

Node? Function(Point? tileCoord, num? zoom, Document? ownerDocument)?
    get getTile => callMethod(getProperty(this, 'getTile'), 'bind', [this]);
void getTile=(Node? value(Point? tileCoord, num? zoom, Document? ownerDocument)?)

Implementation

set getTile(
    Node? Function(Point? tileCoord, num? zoom, Document? ownerDocument)?
        value) {
  setProperty(this, 'getTile', value == null ? null : allowInterop(value));
}