FastItem<T> constructor

const FastItem<T>({
  1. required String labelText,
  2. bool isEnabled = true,
  3. String? normalizedLabelText,
  4. String? descriptionText,
  5. List<FastCategory>? categories,
  6. FastListItemDescriptor? descriptor,
  7. T? value,
})

Implementation

const FastItem({
  required this.labelText,
  this.isEnabled = true,
  this.normalizedLabelText,
  this.descriptionText,
  this.categories,
  this.descriptor,
  this.value,
});