CachedMemoryImageProvider constructor

CachedMemoryImageProvider(
  1. String uniqueKey, {
  2. Uint8List? bytes,
  3. String? base64,
  4. double scale = 1.0,
})

Implementation

CachedMemoryImageProvider(
  this.uniqueKey, {
  this.bytes,
  this.base64,
  this.scale = 1.0,
}) {
  _cachedImageManager = CachedImageBase64Manager.instance();
}