BasePlaceholderView constructor

const BasePlaceholderView({
  1. Key? key,
  2. String? title,
  3. TextStyle? titleStyle,
  4. String? message,
  5. TextStyle? messageStyle,
  6. Widget? image,
  7. VoidCallback? onTap,
})

Implementation

const BasePlaceholderView({
  super.key,
  this.title,
  this.titleStyle,
  this.message,
  this.messageStyle,
  this.image,
  this.onTap,
});