PageBlockListItem constructor

PageBlockListItem({
  1. required String label,
  2. required List<PageBlock> blocks,
  3. required bool hasCheckbox,
  4. required bool isChecked,
  5. required int value,
  6. required String type,
})

Implementation

PageBlockListItem({
  required this.label,
  required this.blocks,
  required this.hasCheckbox,
  required this.isChecked,
  required this.value,
  required this.type,
});