CommandModelFunc constructor

CommandModelFunc({
  1. required String title,
  2. required Function func,
  3. String command = "",
  4. String? description,
  5. String? path,
  6. bool external = false,
})

Implementation

CommandModelFunc({
  required super.title,
  required this.func,
  super.command,
  super.description,
  super.path,
  super.external,
});