ReadyEmptyWidget constructor

const ReadyEmptyWidget({
  1. Key? key,
  2. required String title,
  3. IconData? icon,
  4. Widget? customIcon,
  5. String? subtitle,
  6. Color? backgroundColor,
  7. Widget? additionalWidget,
  8. double padding = 16,
  9. TextStyle? titleStyle,
  10. TextStyle? subtitleStyle,
})

Implementation

const ReadyEmptyWidget({
  super.key,
  required this.title,
  this.icon,
  this.customIcon,
  this.subtitle,
  this.backgroundColor,
  this.additionalWidget,
  this.padding = 16,
  this.titleStyle,
  this.subtitleStyle,
});