ListEditTypeView<T> constructor

ListEditTypeView<T>({
  1. required String title,
  2. required List<ListEditTile> children,
  3. required T groupValue,
  4. Function? onChanged,
  5. Key? key,
})

Implementation

ListEditTypeView(
    {required this.title,
    required this.children,
    required this.groupValue,
    this.onChanged,
    Key? key})
    : super(key: key);