UIImageView constructor

const UIImageView({
  1. Key? key,
  2. required String source,
  3. double? width,
  4. double? height,
  5. BoxFit? fit,
  6. Color? color,
  7. Alignment alignment = Alignment.center,
  8. String? placeHolder,
  9. String? package,
  10. double? loadingRadius,
  11. Widget errorBuilder(
    1. ExtendedImageState state
    )?,
})

Implementation

const UIImageView({
  super.key,
  required this.source,
  this.width,
  this.height,
  this.fit,
  this.color,
  this.alignment = Alignment.center,
  this.placeHolder,
  this.package,
  this.loadingRadius,
  this.errorBuilder,
});