fromPointToLatLng property

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

Implementation

LatLng? Function(
  Point? pixel, [
  bool? noClampNoWrap,
])? get fromPointToLatLng =>
    callMethod(getProperty(this, 'fromPointToLatLng'), 'bind', [this]);
set 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));
}