plotlineDebugLog static method

void plotlineDebugLog(
  1. String message
)

Implementation

static void plotlineDebugLog(String message) {
  if (shouldEnableDebug) {
    print("Plotline: $message");
  }
}