BMKMapPointForCoordinate function

Future<BMKMapPoint?> BMKMapPointForCoordinate(
  1. CLLocationCoordinate2D coordinate
)

Implementation

Future<BMKMapPoint?> BMKMapPointForCoordinate(CLLocationCoordinate2D coordinate) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMapPointForCoordinate::BMKMapPointForCoordinate([])');
  }

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


  // handle native call


  return BmapUtilsFluttifyIOSAs<BMKMapPoint>(__result__);
}