CommandModelRunnable constructor

CommandModelRunnable({
  1. required String title,
  2. required String command,
  3. String? description,
  4. String? path,
})

Implementation

CommandModelRunnable({
  required super.title,
  required super.command,
  super.description,
  super.path,
}) {
  super.argsRequired = false;
  super.args = null;
}