logEnable_module_batch static method

Future<List<void>> logEnable_module_batch(
  1. List<bool?> enable,
  2. List<BMKMapModule?> mapModule
)

Implementation

static Future<List<void>> logEnable_module_batch(List<bool?> enable, List<BMKMapModule?> mapModule) async {
  assert(enable.length == mapModule.length);

  // invoke native method
  final resultBatch = await kBmapCoreFluttifyChannel.invokeMethod('BMKMapManager::logEnable_module_batch', [for (int __i__ = 0; __i__ < enable.length; __i__++) {"enable": enable[__i__], "mapModule": mapModule[__i__]?.toValue()}]);


  return (resultBatch as List).map((__result__) => __result__).cast<void>().toList();
}