getTileUrl property

String? Function(String? pano, num? tileZoom, num? tileX, num? tileY)? get getTileUrl

Implementation

String? Function(String? pano, num? tileZoom, num? tileX, num? tileY)?
    get getTileUrl =>
        callMethod(getProperty(this, 'getTileUrl'), 'bind', [this]);
set getTileUrl (String? value(String? pano, num? tileZoom, num? tileX, num? tileY)?)

Implementation

set getTileUrl(
    String? Function(String? pano, num? tileZoom, num? tileX, num? tileY)?
        value) {
  setProperty(this, 'getTileUrl', value == null ? null : allowInterop(value));
}