ArgGroup constructor

const ArgGroup({
  1. required String title,
  2. String? description,
  3. required String name,
  4. List<ActionArg> args = const [],
  5. String? example,
})

Implementation

const ArgGroup({
  required this.title,
  this.description,
  required this.name,
  this.args = const [],
  this.example,
});