NotifyCommand constructor
NotifyCommand()
Implementation
NotifyCommand() {
argParser.addOption(
'platform',
abbr: 'p',
help: 'Specify the platform to notify (e.g., slack).',
allowed: ['slack'],
defaultsTo: 'slack',
);
argParser.addOption(
'message',
abbr: 'm',
help: 'Message to send to the platform.',
);
}