BasePlaceholderView constructor

const BasePlaceholderView({
  1. Key? key,
  2. String? title,
  3. String? message,
  4. String? image,
  5. VoidCallback? onTap,
})

Implementation

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