fullName property

  1. @override
String fullName
inherited

The full name of this command.

A command's full name is a combination of its own name and its parent's name, allowing developers to quickly identify commands in error messages and logs.

You might also be interested in:

  • name, this entity's own name.

Implementation

@override
String get fullName =>
    (parent is! ChatCommandComponent ? '' : '${(parent as ChatCommandComponent).fullName} ') +
    name;