FLEmptyContainer constructor

FLEmptyContainer({
  1. Key? key,
  2. Color? backgroundColor,
  3. Widget? customLoadingWidget,
  4. bool showLoading = false,
  5. Image? image,
  6. String? title,
  7. TextStyle? titleStyle,
  8. String? detailText,
  9. TextStyle? detailTextStyle,
  10. double space = 8.0,
  11. Widget? actionButton,
})

Implementation

FLEmptyContainer({
  Key? key,
  this.backgroundColor,
  this.customLoadingWidget,
  this.showLoading = false,
  this.image,
  this.title,
  this.titleStyle,
  this.detailText,
  this.detailTextStyle,
  this.space = 8.0,
  this.actionButton,
}) : super(key: key);