InternetCheckerConfig constructor

const InternetCheckerConfig({
  1. List<String> lookupAddresses = const ['google.com', 'cloudflare.com', 'apple.com'],
  2. Duration timeout = const Duration(seconds: 3),
  3. Duration checkInterval = const Duration(seconds: 10),
})

Implementation

const InternetCheckerConfig({
  this.lookupAddresses = const ['google.com', 'cloudflare.com', 'apple.com'],
  this.timeout = const Duration(seconds: 3),
  this.checkInterval = const Duration(seconds: 10),
});