getLogFilePathWithModule static method

Future<String?> getLogFilePathWithModule(
  1. BMKMapModule mapModule
)

Implementation

static Future<String?> getLogFilePathWithModule(BMKMapModule mapModule) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKBaseLog::getLogFilePathWithModule([])');
  }

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


  // handle native call


  return __result__;
}