CustomAlertImage constructor

const CustomAlertImage({
  1. ImageSrc? src,
  2. Color? color,
  3. double borderRadius = 0,
  4. Alignment alignment = Alignment.center,
  5. Size imageSize = const Size(100, 100),
  6. EdgeInsetsGeometry imageMargin = const EdgeInsets.only(top: 20),
})

Implementation

const CustomAlertImage({
  this.src,
  this.color,
  this.borderRadius = 0,
  this.alignment = Alignment.center,
  this.imageSize = const Size(100, 100),
  this.imageMargin = const EdgeInsets.only(top: 20),
});