CSSelectionItem<T> constructor

const CSSelectionItem<T>({
  1. required T value,
  2. required String text,
  3. String? subtitle,
  4. bool showTopBorder = false,
})

Implementation

const CSSelectionItem({
  required this.value,
  required this.text,
  this.subtitle,
  this.showTopBorder = false,
});