RoundImage constructor

const RoundImage({
  1. Key? key,
  2. required String imageUrl,
  3. double? size,
  4. double? width,
  5. double? height,
  6. double? radius,
  7. Widget? placeholder,
  8. Widget? errorImage,
  9. Widget? defaultImage,
  10. Map<String, String>? httpHeaders,
  11. dynamic onError(
    1. dynamic
    )?,
  12. bool supportPreview = false,
})

Implementation

const RoundImage({
  super.key,
  required this.imageUrl,
  this.size,
  this.width,
  this.height,
  this.radius,
  this.placeholder,
  this.errorImage,
  this.defaultImage,
  this.httpHeaders,
  this.onError,
  this.supportPreview = false,
});