FastConnectivityStatusPage constructor
const
FastConnectivityStatusPage({
- Key? key,
- String? titleText,
- String? cancelButtonText,
- String? descriptionText,
- Color? backgroundColor,
- VoidCallback? onCancelTap,
- Color? iconColor,
- FastPaletteScheme? palette,
- Widget? icon,
- String? subTitleText,
- VoidCallback? onRetryTap,
- String? retryButtonText,
- bool hasConnection = false,
Creates a FastConnectivityStatusPage.
The titleText
parameter is required.
Implementation
const FastConnectivityStatusPage({
super.key,
super.titleText,
super.cancelButtonText,
super.descriptionText,
super.backgroundColor,
super.onCancelTap,
super.iconColor,
super.palette,
super.icon,
super.subTitleText,
VoidCallback? onRetryTap,
String? retryButtonText,
this.hasConnection = false,
}) : super(validButtonText: retryButtonText, onValidTap: onRetryTap);