Subcommand constructor Null safety

const Subcommand(
  1. {required String name,
  2. required String description,
  3. String? group,
  4. String? bind}
)

Implementation

const Subcommand ({ required this.name, required this.description, this.group, this.bind });