HealthCheckEvent constructor

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

Returns a new HealthCheckEvent instance.

Implementation

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