EmptyWidget constructor

const EmptyWidget({
  1. Key? key,
  2. String? title,
  3. String? subTitle,
  4. TextStyle? subtitleTextStyle,
  5. TextStyle? titleTextStyle,
  6. dynamic child,
  7. bool showBackgroundAnimation = true,
  8. Color? backgroundColor,
  9. Color? shadowColor,
})

Implementation

const EmptyWidget({
  super.key,
  this.title,
  this.subTitle,
  this.subtitleTextStyle,
  this.titleTextStyle,
  this.child,
  this.showBackgroundAnimation = true,
  this.backgroundColor,
  this.shadowColor,
});