StackedImage constructor

StackedImage({
  1. Key? key,
  2. required List<Image> images,
  3. required double space,
  4. required double imageSize,
  5. bool firstInFront = true,
  6. double radius = 0,
  7. Color? errorBackgroundColor,
  8. String? errorText,
  9. Color? errorTextColor,
})

Implementation

StackedImage({
  super.key,
  required this.images,
  required this.space,
  required this.imageSize,
  this.firstInFront = true,
  this.radius = 0,
  this.errorBackgroundColor,
  this.errorText,
  this.errorTextColor,
});