Data constructor

const Data({
  1. required JsonMap notifier,
  2. required String environment,
  3. required Client client,
  4. required String platform,
  5. required String language,
  6. required String framework,
  7. required String codeVersion,
  8. required Level level,
  9. required DateTime timestamp,
  10. required Body body,
  11. User? user,
  12. JsonMap? custom,
  13. JsonMap? platformPayload,
  14. required JsonMap server,
})

Implementation

const Data({
  required this.notifier,
  required this.environment,
  required this.client,
  required this.platform,
  required this.language,
  required this.framework,
  required this.codeVersion,
  required this.level,
  required this.timestamp,
  required this.body,
  this.user,
  this.custom,
  this.platformPayload,
  required this.server,
});