usageExamples property
Commands can override this getter to add examples to the usage help text.
Implementation
@override
String get usageExamples =>
'''\n
Examples
Show the live status of the project's podlets.
\$ $baseCommand status live
Show the live status of a specific project's podlets.
\$ $baseCommand status live --project my-project
Refresh the live status every 5 seconds until Ctrl+C is pressed.
\$ $baseCommand status live --watch
Refresh the live status every 30 seconds.
\$ $baseCommand status live --watch --interval 30s
''';