getLongitude method

Future<double?> getLongitude()

Implementation

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

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


  // handle native call


  return __result__;
}