contains method

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

Check whether the building's geometry contains the point

Implementation

Future<bool?> contains(MPPoint point) async =>
    await _geometry?.contains(point);