SelectGroup constructor

const SelectGroup({
  1. Key? key,
  2. List<Widget>? headers,
  3. List<Widget>? footers,
  4. required List<Widget> children,
})

Implementation

const SelectGroup({
  super.key,
  this.headers,
  this.footers,
  required this.children,
});