SipConsole constructor

SipConsole({
  1. Print? success,
  2. Print? error,
  3. Print? warn,
  4. Print? verbose,
  5. Print? log,
  6. Print? debug,
  7. Level level = Level.normal,
})

Implementation

SipConsole({
  Print? success,
  Print? error,
  Print? warn,
  Print? verbose,
  Print? log,
  Print? debug,
  Level level = Level.normal,
})  : _success = success ?? PrintSuccess(),
      _error = error ?? PrintError(),
      _warn = warn ?? PrintWarn(),
      _verbose = verbose ?? PrintVerbose(),
      _log = log ?? PrintLog(),
      _debug = debug ?? PrintDebug(),
      _level = level;