RoundedImage constructor

RoundedImage({
  1. Key? key,
  2. required double size,
  3. required Image image,
  4. required double radius,
  5. Color? errorBackgroundColor,
  6. String? errorText,
  7. Color? errorTextColor,
})

Implementation

RoundedImage({
  super.key,
  required this.size,
  required this.image,
  required this.radius,
  this.errorBackgroundColor,
  this.errorText,
  this.errorTextColor,
});