EmptyStateV4Layout constructor

const EmptyStateV4Layout({
  1. Key? key,
  2. required List<DDSTab> tabList,
  3. required TabController controller,
  4. required String subtitleText,
  5. required String placeholderImageLink,
  6. required String cardImageLink,
  7. required double placeholderImageWidth,
  8. required double placeholderImageHeight,
  9. double? cardImageWidth,
  10. double? cardImageHeight,
  11. bool? isNetworkImage,
  12. bool? cardIsNetworkImage,
  13. String? cardButtonLabel,
  14. String? emptyStateCardTitle,
  15. required String emptyStateCardSubTitle,
  16. required VoidCallback onCardButtonSubmit,
  17. 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,
  }
);