PageGenerator constructor

PageGenerator(
  1. GuiPage page,
  2. GuiContainer container,
  3. String countScore,
  4. int? fillMax,
  5. String pageScore,
  6. List<GuiSlot>? globalSlots,
  7. Item? placeholder,
  8. int index,
  9. int totalPages,
  10. String path,
)

Implementation

PageGenerator(
  this.page,
  this.container,
  this.countScore,
  this.fillMax,
  this.pageScore,
  this.globalSlots,
  Item? placeholder,
  this.index,
  this.totalPages,
  this.path,
) {
  this.placeholder = page.placeholder ?? placeholder;
  _slots = _getGenSlots();
}