CachedMemoryImage constructor

const CachedMemoryImage({
  1. Key? key,
  2. required String base64Image,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.cover,
})

Implementation

const CachedMemoryImage({
  super.key,
  required this.base64Image,
  this.width,
  this.height,
  this.fit = BoxFit.cover,
});