ShowImageNetwork constructor

const ShowImageNetwork({
  1. Key? key,
  2. required String imageUrl,
  3. bool isCircle = false,
  4. double imageCircleRadius = 35,
  5. double imageCircleElevation = 0,
  6. BorderRadius? imageBorderRadius,
  7. EdgeInsetsGeometry padding = EdgeInsets.zero,
  8. AlignmentGeometry alignment = Alignment.center,
  9. BoxFit? fit,
  10. BlendMode? blendMode,
  11. Widget onErrorImage(
    1. BuildContext context,
    2. String url,
    3. dynamic error
    )?,
  12. Widget loadingBuilder(
    1. BuildContext context,
    2. String imageUrl
    )?,
  13. double? width,
  14. double? height,
})

Implementation

const ShowImageNetwork({
  Key? key,
  required this.imageUrl,
  this.isCircle = false,
  this.imageCircleRadius = 35,
  this.imageCircleElevation = 0,
  this.imageBorderRadius,
  this.padding = EdgeInsets.zero,
  this.alignment = Alignment.center,
  this.fit,
  this.blendMode,
  this.onErrorImage,
  this.loadingBuilder,
  this.width,
  this.height,
}) : super(key: key);