NiceReportBlock constructor

NiceReportBlock({
  1. required String id,
  2. required NiceReportBlockType type,
  3. String title = '',
  4. String content = '',
})

Implementation

NiceReportBlock({
  required this.id,
  required this.type,
  this.title = '',
  this.content = '',
});