BMKAreaForPolygon function

Future<double?> BMKAreaForPolygon(
  1. List<CLLocationCoordinate2D> coordinates,
  2. int count
)

Implementation

Future<double?> BMKAreaForPolygon(List<CLLocationCoordinate2D> coordinates, int count) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKAreaForPolygon::BMKAreaForPolygon([\'count\':$count])');
  }

  // invoke native method
  final __result__ = await kBmapUtilsFluttifyChannel.invokeMethod('BMKAreaForPolygon::BMKAreaForPolygon', {"coordinates": coordinates, "count": count});


  // handle native call


  return __result__;
}