Command constructor

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

Implementation

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