ConnectionCheck constructor

ConnectionCheck(
  1. String url,
  2. String token, {
  3. CheckerOptions? options,
})

Implementation

ConnectionCheck(
  this.url,
  this.token, {
  CheckerOptions? options,
}) : options = options ?? CheckerOptions() {
  onDispose(() async {
    await events.dispose();
  });
}