getlogEnableWithModule static method

Future<bool?> getlogEnableWithModule(
  1. BMKMapModule mapModule
)

Implementation

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

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


  // handle native call


  return __result__;
}