execute method
Implementation
Future<void> execute(ArgResults results) async {
final watch = results['watch'] as bool;
if (watch) {
logger.info('Starting asset watcher...');
await _watchAssets();
} else {
await _generateAssets();
}
}