NiceReportDefinition constructor

NiceReportDefinition({
  1. String title = 'Untitled Report',
  2. NiceReportPageSize pageSize = NiceReportPageSize.a4,
  3. NiceReportOrientation orientation = NiceReportOrientation.portrait,
  4. List<NiceReportSection> sections = const [],
})

Implementation

NiceReportDefinition({
  this.title = 'Untitled Report',
  this.pageSize = NiceReportPageSize.a4,
  this.orientation = NiceReportOrientation.portrait,
  this.sections = const [],
});