fullName property
String
get
fullName
The full name of this logger, which includes the parent's full name.
Implementation
String get fullName =>
parent?.name.isNotEmpty ?? false ? '${parent!.fullName}.$name' : name;