Report constructor

Report({
  1. required ReportType type,
  2. String? operator,
  3. int? timeout,
  4. OpenDrawer? openDrawer,
})

Implementation

Report({
  required this.type,
  this.operator,
  this.timeout,
  this.openDrawer,
});