getFirstRoadName method

Future<String?> getFirstRoadName()

Implementation

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

  // invoke native method
  final __result__ = await kAmapSearchFluttifyChannel.invokeMethod('com.amap.api.services.road.Crossroad::getFirstRoadName', {"__this__": this});


  // handle native call


  return __result__;
}