create_batch__String static method

Implementation

static Future<List<com_amap_api_services_core_AMapException>> create_batch__String(List<String> var1) async {
  assert(true);
  final __result_batch__ = await  kAmapSearchFluttifyChannel.invokeListMethod(
    'ObjectFactory::create_batchcom_amap_api_services_core_AMapException__String',
    [for (int __i__ = 0; __i__ < var1.length; __i__++) {"var1": var1[__i__]}]
  );
  return __result_batch__
      ?.map((it) => AmapSearchFluttifyAndroidAs<com_amap_api_services_core_AMapException>(it))
      .where((element) => element !=null)
      .cast<com_amap_api_services_core_AMapException>()
      .toList() ?? <com_amap_api_services_core_AMapException>[];
}