getSearchSuggestionKeywords method

Future<List<String>?> getSearchSuggestionKeywords()

Implementation

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

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


  // handle native call


  return (__result__ as List?)?.cast<String>();
}