ConnectivityConfig constructor
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;
}