XEmpty constructor

const XEmpty({
  1. Key? key,
  2. Widget? image,
  3. Widget? title,
  4. String? tltleText = '',
})

Implementation

const XEmpty({
  super.key,
  this.image,
  this.title,
  this.tltleText = '',
});