ConnectivityConfig constructor

ConnectivityConfig(
  1. {String url = 'google.nl',
  2. String? webUrl,
  3. Duration duration = const Duration(seconds: 3),
  4. dynamic handler,
  5. dynamic checker}
)

Create a custom configuration for Connectivity.

Implementation

ConnectivityConfig({
  this.url = 'google.nl',
  this.webUrl,
  this.duration = const Duration(seconds: 3),
  handler,
  checker,
}) {
  checker ??= InternetChecker();
  handler ??= DefaultFlutterHandler();

  this.checker = checker;
  this.handler = handler;
}