BodyAlertImage constructor

const BodyAlertImage({
  1. Key? key,
  2. required VoidCallback onClose,
  3. double? width,
  4. required double borderRadius,
  5. required String path,
  6. required int type,
  7. required double closeIconSize,
  8. required BoxFit? fit,
  9. Color? loadingColor,
})

Implementation

const BodyAlertImage({
  super.key,
  required this.onClose,
  this.width,
  required this.borderRadius,
  required this.path,
  required this.type,
  required this.closeIconSize,
  required this.fit,
  this.loadingColor,
});