debugLogs static method

void debugLogs(
  1. Object _log
)

Enable or disable dev logs

Implementation

static void debugLogs(Object _log) {
  if (showLogs) debugPrint(_log.toString());
}