NiceReportBuilder constructor

const NiceReportBuilder({
  1. Key? key,
  2. NiceReportDefinition? definition,
  3. void onSave(
    1. NiceReportDefinition def
    )?,
  4. void onChange(
    1. NiceReportDefinition def
    )?,
  5. void onExportJson(
    1. String json
    )?,
})

Implementation

const NiceReportBuilder({
  super.key,
  this.definition,
  this.onSave,
  this.onChange,
  this.onExportJson,
});