NyLogger class
Logger used for messages you want to print to the console.
Constructors
- NyLogger()
Properties
- hashCode → int
- 
  The hash code for this object.
  no setterinherited
- runtimeType → Type
- 
  A representation of the runtime type of the object.
  no setterinherited
Methods
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited
Static Methods
- 
  debug(dynamic message, {bool alwaysPrint = false}) → void 
- 
  Logs a debug messageto the console. It will only print if your app's environment is in debug mode. You can override this by settingalwaysPrint= true.
- 
  dump(dynamic message, String? tag, {bool alwaysPrint = false}) → void 
- 
  Dumps a messagewith a tag.
- 
  error(dynamic message, {bool alwaysPrint = false}) → void 
- 
  Logs an error messageto the console. It will only print if your app's environment is in debug mode. You can override this by settingalwaysPrint= true.
- 
  info(dynamic message, {bool alwaysPrint = false}) → void 
- 
  Log an info messageto the console. It will only print if your app's environment is in debug mode. You can override this by settingalwaysPrint= true.
- 
  json(dynamic message, {bool alwaysPrint = false}) → void 
- 
  Log json data messageto the console. It will only print if your app's environment is in debug mode. You can override this by settingalwaysPrint= true.