CycleOption<T> constructor

const CycleOption<T>({
  1. required T value,
  2. String? label,
  3. Component? icon,
})

Implementation

const CycleOption({
  required this.value,
  this.label,
  this.icon,
});