VanEmpty constructor

const VanEmpty({
  1. Key? key,
  2. Image? image,
  3. double imageSize = 100,
  4. String description = '',
})

Implementation

const VanEmpty({
  super.key,
  this.image,
  this.imageSize = 100,
  this.description = '',
});