fromPointToLatLng property

(LatLng? Function(Point? pixel, [bool? noClampNoWrap])?) fromPointToLatLng

Implementation

LatLng? Function(
  Point? pixel, [
  bool? noClampNoWrap,
])? get fromPointToLatLng =>
    callMethod(getProperty(this, 'fromPointToLatLng'), 'bind', [this]);
void fromPointToLatLng=(LatLng? value(Point? pixel, [bool? noClampNoWrap])?)

Implementation

set fromPointToLatLng(
    LatLng? Function(
  Point? pixel, [
  bool? noClampNoWrap,
])?
        value) {
  setProperty(
      this, 'fromPointToLatLng', value == null ? null : allowInterop(value));
}