getLocationDetail method

Future<String?> getLocationDetail()

Implementation

Future<String?> getLocationDetail() async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: com.amap.api.location.AMapLocation@$refId::getLocationDetail([])');
  }

  // invoke native method
  final __result__ = await kAmapLocationFluttifyChannel.invokeMethod('com.amap.api.location.AMapLocation::getLocationDetail', {"__this__": this});


  // handle native call


  return __result__;
}