getLogFilePathWithModule_batch static method

Future<List<String?>> getLogFilePathWithModule_batch(
  1. List<BMKMapModule> mapModule
)

Implementation

static Future<List<String?>> getLogFilePathWithModule_batch(List<BMKMapModule> mapModule) async {
  assert(true);

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


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