devSetDebugModeOn static method

  1. @Deprecated('Dev only')
Future<void> devSetDebugModeOn([
  1. bool on = true
])

deprecated on purpose to remove from code.

To use during developpment/debugging Set extra dart and nativate debug logs

Implementation

@Deprecated('Dev only')
static Future<void> devSetDebugModeOn([bool on = true]) {
  impl.debugModeOn = on;
  return setDebugModeOn(on);
}