setEnableBlackBox static method

Future<void> setEnableBlackBox(
  1. bool enabled
)

Sets if black-box is enabled.

Implementation

static Future<void> setEnableBlackBox(bool enabled) async {
  await _channel.invokeMethod('setEnableBlackBox', {
    'enabled': enabled,
  });
}