PageListOrderedItemBlocks constructor

const PageListOrderedItemBlocks({
  1. required bool checkbox,
  2. required bool checked,
  3. String? num,
  4. required List<PageBlockBase> blocks,
  5. int? value,
  6. String? type,
})

Page List Ordered Item Blocks constructor.

Implementation

const PageListOrderedItemBlocks({
  required this.checkbox,
  required this.checked,
  this.num,
  required this.blocks,
  this.value,
  this.type,
}) : super._();