unproject method

LatLng? unproject(
  1. CustomPoint<num> point, [
  2. double? zoom
])

Implementation

LatLng? unproject(CustomPoint point, [double? zoom]) {
  zoom ??= _zoom;
  return options.crs.pointToLatLng(point, zoom);
}