NiceReportSection constructor

NiceReportSection({
  1. required String id,
  2. required NiceReportSectionType type,
  3. String? title,
  4. String? content,
  5. Map<String, dynamic> config = const {},
})

Implementation

NiceReportSection({
  required this.id,
  required this.type,
  this.title,
  this.content,
  this.config = const {},
});