HealthCheckEvent constructor

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

Returns a new HealthCheckEvent instance.

Implementation

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