Command constructor

Command({
  1. required String args,
  2. DateTime? createdAt,
  3. required String description,
  4. required String name,
  5. required String set_,
  6. DateTime? updatedAt,
})

Returns a new Command instance.

Implementation

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