contains method

bool contains(
  1. LatLng point
)

Checks whether point is inside bounds

Implementation

bool contains(LatLng point) =>
    point.longitude >= west &&
    point.longitude <= east &&
    point.latitude >= south &&
    point.latitude <= north;