contains method

Future<bool?> contains(
  1. MPPoint point
)

Check whether the venue contains a point

Implementation

Future<bool?> contains(MPPoint point) async =>
    await UtilPlatform.instance.geometryIsInside(geometry, point);