setlogFilePath_module static method

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

Implementation

static Future<void> setlogFilePath_module(String logFilePath, BMKMapModule mapModule) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKBaseLog::setlogFilePath([\'logFilePath\':$logFilePath])');
  }

  // invoke native method
  final __result__ = await kBmapCoreFluttifyChannel.invokeMethod('BMKBaseLog::setlogFilePath_module', {"logFilePath": logFilePath, "mapModule": mapModule.toValue()});


  // handle native call


  return __result__;
}