PageBlockModelItem constructor Null safety

PageBlockModelItem(
  1. {int? id,
  2. String? name,
  3. String? description,
  4. int? itemType,
  5. int? code,
  6. List<ItemItem>? items}
)

Implementation

PageBlockModelItem({
  this.id,
  this.name,
  this.description,
  this.itemType,
  this.code,
  this.items,
});