CeleryEventBase constructor

CeleryEventBase({
  1. required String hostname,
  2. required int utcoffset,
  3. required int pid,
  4. required int clock,
  5. required String uuid,
  6. required double timestamp,
  7. required String type,
  8. required double localReceived,
})

Implementation

CeleryEventBase({
  required this.hostname,
  required this.utcoffset,
  required this.pid,
  required this.clock,
  required this.uuid,
  required this.timestamp,
  required this.type,
  required this.localReceived,
});