GroupSelect<T> constructor

const GroupSelect<T>({
  1. Key? key,
  2. required String title,
  3. required SelectGroupController<T> controller,
  4. List<Group<T>>? groups,
  5. List<Item<T>>? items,
  6. Color? activeColor = ColorsUtil.blue,
  7. void onChange(
    1. dynamic
    )?,
})

Implementation

const GroupSelect({
  Key? key,
  required this.title,
  required this.controller,
  this.groups,
  this.items,
  this.activeColor = ColorsUtil.blue,
  this.onChange,
})  : assert(groups != null || items != null),
      super(key: key);