MeshErrorNotice constructor

const MeshErrorNotice({
  1. required String category,
  2. required String message,
  3. required MeshErrorSeverity severity,
  4. required DateTime timestamp,
  5. Object? error,
  6. StackTrace? stackTrace,
})

Implementation

const MeshErrorNotice({
  required this.category,
  required this.message,
  required this.severity,
  required this.timestamp,
  this.error,
  this.stackTrace,
});