Command constructor

const Command(
  1. {String? short,
  2. dynamic long,
  3. String? help}
)

Implementation

const Command({
  String? short,
  dynamic long,
  String? help,
}) : super(
        short: short,
        long: long,
        help: help,
      );