NyCommand constructor

NyCommand({
  1. String? name,
  2. String? category,
  3. Function? action,
  4. String? package,
  5. String? description,
})

Implementation

NyCommand({
  this.name,
  this.category,
  this.action,
  this.package,
  this.description,
});