getlogEnableWithModule_batch static method

Future<List<bool?>> getlogEnableWithModule_batch(
  1. List<BMKMapModule> mapModule
)

Implementation

static Future<List<bool?>> getlogEnableWithModule_batch(List<BMKMapModule> mapModule) async {
  assert(true);

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


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