fullName property
String
get
fullName
Returns full name of this logger.
This name will be a dot-separated string that uniquely identifies this logger.
Implementation
String get fullName => !isRoot ? '${_parent!.fullName}.$name' : name;