ImageBuilder constructor

ImageBuilder({
  1. Key? key,
  2. dynamic centerImage,
  3. bool? hasAnimation,
  4. dynamic animationName,
})

Implementation

ImageBuilder({
  Key? key,
  this.centerImage,
  this.hasAnimation,
  this.animationName,
}) : super(key: key);