fullName property Null safety

String fullName

The full name of this group.

The full name of a group is its name appended to its parents fullName.

Implementation

String get fullName =>
    (_parent == null || _parent is CommandsPlugin ? '' : _parent!.name + ' ') + name;