run method
Implementation
@override
Future<void> run() async {
final results = argResults;
if (results != null) {
final title = results['key'];
final value = results['value'];
if (title != null && value != null) {
final key = supportedKeys[title].expect('key of $title not available');
return await setSetting(key, title, value);
}
}
print('You must provide a `key` and `value` to set any parameter');
}