printThrow method

void printThrow(
  1. String text
)

Implementation

void printThrow(String text) {
  if (configDebugPrintThrowError) throw text;
  print(text);
}