StatementTemplate constructor

StatementTemplate({
  1. TextDirection direction = TextDirection.ltr,
  2. TemplateTheme theme = TemplateThemes.finance,
  3. SfntFont? font,
  4. SfntFont? fontBold,
  5. required TemplateParty issuer,
  6. required TemplateParty account,
  7. List<StatementLine> lines = const <StatementLine>[],
  8. StatementLabels labels = const StatementLabels(),
  9. String period = '',
  10. String opening = '',
  11. String closing = '',
  12. String? notes,
  13. String footer = '',
})

StatementTemplate API.

Implementation

StatementTemplate({
  this.direction = TextDirection.ltr,
  this.theme = TemplateThemes.finance,
  this.font,
  this.fontBold,
  required this.issuer,
  required this.account,
  this.lines = const <StatementLine>[],
  this.labels = const StatementLabels(),
  this.period = '',
  this.opening = '',
  this.closing = '',
  this.notes,
  this.footer = '',
});