ExUiErrorOrEmpty constructor

const ExUiErrorOrEmpty({
  1. Key? key,
  2. String? title,
  3. TextStyle? titleStyle,
  4. String? message,
  5. TextStyle? messageStyle,
  6. Color? bgColor,
  7. Widget? illustration,
  8. Widget? child,
})

Implementation

const ExUiErrorOrEmpty({
  super.key,
  this.title,
  this.titleStyle,
  this.message,
  this.messageStyle,
  this.bgColor,
  this.illustration,
  this.child,
});