CloudImage constructor

const CloudImage({
  1. Key? key,
  2. required CloudMediaItem media,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.cover,
  6. bool enableZoom = false,
  7. VoidCallback? onTap,
})

Implementation

const CloudImage({
  super.key,
  required this.media,
  this.width,
  this.height,
  this.fit = BoxFit.cover,
  this.enableZoom = false,
  this.onTap,
});