RawImageView constructor

const RawImageView({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. bool cacheMode = true,
  5. dynamic image,
  6. ImageType imageType = ImageType.detect,
  7. BoxFit? scaleType,
  8. Color? tint,
  9. BlendMode? tintMode,
  10. ImageConfigNetwork? networkImageConfig,
})

Implementation

const RawImageView({
  super.key,
  this.width,
  this.height,
  this.cacheMode = true,
  this.image,
  this.imageType = ImageType.detect,
  this.scaleType,
  this.tint,
  this.tintMode,
  this.networkImageConfig,
});