setlogFilePath_module_batch static method

Future<List<void>> setlogFilePath_module_batch(
  1. List<String> logFilePath,
  2. List<BMKMapModule> mapModule
)

Implementation

static Future<List<void>> setlogFilePath_module_batch(List<String> logFilePath, List<BMKMapModule> mapModule) async {
  assert(logFilePath.length == mapModule.length);

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


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