logEnable_module static method

Future<void> logEnable_module(
  1. bool? enable,
  2. BMKMapModule? mapModule
)

Implementation

static Future<void> logEnable_module(bool? enable, BMKMapModule? mapModule) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMapManager::logEnable([\'enable\':$enable])');
  }

  // invoke native method
  final __result__ = await kBmapCoreFluttifyChannel.invokeMethod('BMKMapManager::logEnable_module', {"enable": enable, "mapModule": mapModule?.toValue()});


  // handle native call


  return __result__;
}