AMapDataAvailableForCoordinate function

Future<bool?> AMapDataAvailableForCoordinate(
  1. CLLocationCoordinate2D coordinate
)

Implementation

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

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


  // handle native call


  return __result__;
}