EmptyStateV4Layout constructor
const
EmptyStateV4Layout({
- Key? key,
- required List<
DDSTab> tabList, - required TabController controller,
- required String subtitleText,
- required String placeholderImageLink,
- required String cardImageLink,
- required double placeholderImageWidth,
- required double placeholderImageHeight,
- double? cardImageWidth,
- double? cardImageHeight,
- bool? isNetworkImage,
- bool? cardIsNetworkImage,
- String? cardButtonLabel,
- String? emptyStateCardTitle,
- required String emptyStateCardSubTitle,
- required VoidCallback onCardButtonSubmit,
- Widget? content,
Implementation
const EmptyStateV4Layout(
{
super.key,
required this.tabList,
required this.controller,
required this.subtitleText,
required this.placeholderImageLink,
required this.cardImageLink,
required this.placeholderImageWidth,
required this.placeholderImageHeight,
this.cardImageWidth,
this.cardImageHeight,
this.isNetworkImage,
this.cardIsNetworkImage,
this.cardButtonLabel,
this.emptyStateCardTitle,
required this.emptyStateCardSubTitle,
required this.onCardButtonSubmit,
this.content,
}
);