DefaultEmptyWidget constructor

const DefaultEmptyWidget({
  1. Key? key,
  2. String? title,
  3. String? message,
  4. Widget? icon,
})

Implementation

const DefaultEmptyWidget({
  super.key,
  this.title,
  this.message,
  this.icon,
});