contains method

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

Check whether a point is contained within the geometry

Implementation

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