ChecklistTemplate constructor

ChecklistTemplate({
  1. TextDirection direction = TextDirection.ltr,
  2. TemplateTheme theme = TemplateThemes.operations,
  3. SfntFont? font,
  4. SfntFont? fontBold,
  5. required TemplateParty owner,
  6. List<CheckGroup> groups = const <CheckGroup>[],
  7. ChecklistLabels labels = const ChecklistLabels(),
  8. String footer = '',
})

ChecklistTemplate API.

Implementation

ChecklistTemplate({
  this.direction = TextDirection.ltr,
  this.theme = TemplateThemes.operations,
  this.font,
  this.fontBold,
  required this.owner,
  this.groups = const <CheckGroup>[],
  this.labels = const ChecklistLabels(),
  this.footer = '',
});