IDKitImage constructor

const IDKitImage({
  1. Key? key,
  2. Image? image,
  3. ByteData? byteData,
  4. ByteBuffer? byteBuffer,
  5. ImmutableBuffer? immutableBuffer,
  6. Uint8List? uint8List,
  7. Uint32List? uint32List,
  8. PixelFormat? pixelFormat,
  9. double? width,
  10. double? height,
  11. Color? activityIndicatorColor,
  12. Widget? loadingChild,
  13. Widget? errorChild,
})

Implementation

const IDKitImage({
  super.key,
  this.image,
  this.byteData,
  this.byteBuffer,
  this.immutableBuffer,
  this.uint8List,
  this.uint32List,
  this.pixelFormat,
  this.width,
  this.height,
  this.activityIndicatorColor,
  this.loadingChild,
  this.errorChild,
});