SegmentedSelector<T> constructor

const SegmentedSelector<T>({
  1. Key? key,
  2. required T value,
  3. required List<SegmentOption<T>> options,
  4. required ValueChanged<T> onChanged,
  5. required MultiFactorLoginStyle style,
})

Implementation

const SegmentedSelector({
  super.key,
  required this.value,
  required this.options,
  required this.onChanged,
  required this.style,
});