EmptyStateV3Layout constructor

const EmptyStateV3Layout({
  1. Key? key,
  2. required String appBarTitleText,
  3. required String titleText,
  4. required String subtitleText,
  5. required ShapeBorder? shape,
  6. required VoidCallback onBackPressed,
  7. required AlignmentGeometry placeholderImageAlignment,
  8. required String placeholderImageLink,
  9. required double placeholderImageWidth,
  10. required double placeholderImageHeight,
  11. bool? isNetworkImage,
  12. required bool showBackIcon,
})

Implementation

const EmptyStateV3Layout(
    {
      super.key,
      required this.appBarTitleText,
      required this.titleText,
      required this.subtitleText,
      required this.shape,
      required this.onBackPressed,
      required this.placeholderImageAlignment,
      required this.placeholderImageLink,
      required this.placeholderImageWidth,
      required this.placeholderImageHeight,
      this.isNetworkImage,
      required this.showBackIcon,
  }
);