LiveCommandSchema constructor

const LiveCommandSchema({
  1. required String name,
  2. String? description,
  3. List<LiveCommandOption> options = const [],
})

Creates a LiveCommandSchema.

Implementation

const LiveCommandSchema({
  required this.name,
  this.description,
  this.options = const [],
});