MiniLoggerLevelEnum class

  • V : 黑色,Verbose就是冗长啰嗦的。通常表达开发调试过程中的一些详细信息。
  • D : 蓝色,Debug来表达调试信息。
  • I : 绿色,Info来表达一些信息。
  • W : 橙色,Warn表示警告,但不一定会马上出现错误,开发时有时用来表示特别注意的地方。
  • E : 红色,Error 出现错误,是最需要关注解决的。 E>W>I>D>V

Properties

color Color
final
hashCode int
The hash code for this object.
no setteroverride
level String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
serverTag String
服务器端对应级别
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override
operator >=(MiniLoggerLevelEnum? other) bool

Static Properties

all List<MiniLoggerLevelEnum>
final
D MiniLoggerLevelEnum
final
E MiniLoggerLevelEnum
final
I MiniLoggerLevelEnum
final
V MiniLoggerLevelEnum
final
W MiniLoggerLevelEnum
final

Static Methods

of(String level) MiniLoggerLevelEnum?