NoInternetPage constructor

const NoInternetPage({
  1. Key? key,
  2. Widget? child,
  3. VoidCallback? onRetry,
  4. String title = 'No Internet Connection',
  5. String message = 'Please check your internet connection and try again.',
  6. String retryButtonText = 'Retry',
  7. Color? backgroundColor,
  8. Color? textColor,
  9. Color? buttonColor,
})

Implementation

const NoInternetPage({
  super.key,
  this.child,
  this.onRetry,
  this.title = 'No Internet Connection',
  this.message = 'Please check your internet connection and try again.',
  this.retryButtonText = 'Retry',
  this.backgroundColor,
  this.textColor,
  this.buttonColor,
});