ComEmpty constructor

const ComEmpty({
  1. Key? key,
  2. Widget? message,
  3. Widget? image,
  4. double? imageSize = 120.0,
})

Implementation

const ComEmpty({
  super.key,
  this.message,
  this.image,
  this.imageSize = 120.0,
});