SingleSelectionPage<T> constructor

const SingleSelectionPage<T>({
  1. required Widget title,
  2. required List<SelectionItem<T>> children,
  3. T? initial,
  4. ValueChanged<T?>? onChanged,
  5. AppType scaffoldType = AppType.cupertino,
  6. Widget? header,
  7. Widget? footer,
  8. CupertinoListSectionType? headerType,
  9. CupertinoListSectionType? footerType,
  10. Key? key,
})

Implementation

const SingleSelectionPage({
  required this.title,
  required this.children,
  this.initial,
  this.onChanged,
  this.scaffoldType = AppType.cupertino,
  this.header,
  this.footer,
  this.headerType,
  this.footerType,
  Key? key}) : super(key: key);