noInterNet function
Implementation
noInterNet(BuildContext? context) {
try {
return ScaffoldMessenger.of(context!).showSnackBar(
const SnackBar(
content: Text("Please check your internet connection!"),
duration: Duration(seconds: 1),
),
);
} catch (e) {
if (kDebugMode) {
print(e);
}
}
}