checkConnection method
override
Checks the connection status of the device.
Returns true
if the device is connected to the internet, false
otherwise.
Implementation
@override
Future<bool> checkConnection() async {
var addresses = await InternetAddress.lookup("google.com");
return (addresses.isNotEmpty && addresses.first.rawAddress.isNotEmpty);
}