GenericRetryView constructor

const GenericRetryView({
  1. Key? key,
  2. required String errorMessage,
  3. required VoidCallback onRetry,
  4. String? extraButton,
  5. VoidCallback? onExtraButtonPressed,
  6. Color? textBackgroundColor,
  7. bool noAppBar = false,
})

Implementation

const GenericRetryView(
    {super.key,
    required this.errorMessage,
    required this.onRetry,
    this.extraButton,
    this.onExtraButtonPressed,
    this.textBackgroundColor,
    this.noAppBar = false});