get_strategy_batch method

Future<List<AMapDrivingStrategy?>> get_strategy_batch()

Implementation

Future<List<AMapDrivingStrategy?>> get_strategy_batch() async {
  final resultBatch = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_strategy_batch", [for (final __item__ in this) {'__this__': __item__}]);
  return (resultBatch as List).map((__result__) => (__result__ as int).toAMapDrivingStrategy()).cast<AMapDrivingStrategy?>().toList();
}