NoDataWidget constructor

NoDataWidget({
  1. String? image,
  2. Size? imageSize,
  3. Widget? imageWidget,
  4. BoxFit fit = BoxFit.contain,
  5. String? title,
  6. String? subTitle,
  7. VoidCallback? onRetry,
  8. String? retryText,
  9. TextStyle? titleTextStyle,
  10. TextStyle? subTitleTextStyle,
  11. EdgeInsets? buttonPadding,
  12. Key? key,
})

Implementation

NoDataWidget({
  this.image,
  this.imageSize,
  this.imageWidget,
  this.fit = BoxFit.contain,
  this.title,
  this.subTitle,
  this.onRetry,
  this.retryText,
  this.titleTextStyle,
  this.subTitleTextStyle,
  this.buttonPadding,
  super.key,
});