NoInternetWidget constructor

const NoInternetWidget({
  1. Key? key,
  2. double size = 24,
  3. Color? backgroundColor,
  4. Color? iconColor,
  5. IconData? icon,
  6. bool shouldAnimate = true,
  7. bool shouldShowWhenNoInternet = true,
})

Implementation

const NoInternetWidget({
  super.key,
  this.size = 24,
  this.backgroundColor,
  this.iconColor,
  this.icon,
  this.shouldAnimate = true,
  this.shouldShowWhenNoInternet = true,
});