ExtendedImageWithAssetsPicker.memory constructor
ExtendedImageWithAssetsPicker.memory(
- Uint8List bytes, {
- Key? key,
- ExtendedImageLoadStateBuilder? loading,
- ExtendedImageLoadStateBuilder? failed,
- double? width,
- double? height,
- BoxFit? fit = BoxFit.cover,
Implementation
ExtendedImageWithAssetsPicker.memory(Uint8List bytes,
{super.key,
this.loading,
this.failed,
super.width,
super.height,
super.fit = BoxFit.cover})
: super.memory(bytes,
imageCacheName: bytes.hashCode.toString(),
enableLoadState: true,
loadStateChanged:
_buildLoadStateChanged(failed: failed, loading: loading));