NoInternetScreen constructor

const NoInternetScreen({
  1. Key? key,
  2. VoidCallback? onRetry,
  3. String? title,
  4. String? message,
  5. String? buttonText,
})

Implementation

const NoInternetScreen({
  super.key,
  this.onRetry,
  this.title,
  this.message,
  this.buttonText,
});