HealthCheckEvent constructor

HealthCheckEvent({
  1. String? cid,
  2. required String connectionId,
  3. required DateTime createdAt,
  4. DateTime? receivedAt,
  5. String type = 'health.check',
})

Returns a new HealthCheckEvent instance.

Implementation

HealthCheckEvent({
  this.cid,
  required this.connectionId,
  required this.createdAt,
  this.receivedAt,
  this.type = 'health.check',
});