fullName property

String fullName

The full name of this logger, which includes the parent's full name.

Implementation

String get fullName => (_parent == null || _parent!.name == '')
    ? name
    : '${_parent!.fullName}.$name';