setEnableLog static method

Future<void> setEnableLog(
  1. bool? parameter
)

setEnableLog

Implementation

static Future<void> setEnableLog(bool? parameter) async {
  try {
    _channel.invokeMethod('setEnableLog', {'Enable': parameter});
  } catch (e, stack) {
    MzanalyticsLog.p(e.toString() + stack.toString());
  }
}