Command constructor

Command({
  1. required String name,
  2. required String description,
  3. required String args,
})

Constructor used for json serialization

Implementation

Command({
  required this.name,
  required this.description,
  required this.args,
});