init static method

void init({
  1. bool isDebug = false,
  2. String? tag,
  3. bool useSystemPrint = false,
})

Implementation

static void init({
  bool isDebug = false,
  String? tag,
  bool useSystemPrint = false
 }) {
  debug = isDebug;
  tagDefault = tag??_TAG_DEFAULT;
  isSystemPrint = useSystemPrint;
}