OptimizedImage.memory constructor
OptimizedImage.memory(})
Implementation
factory OptimizedImage.memory(
Uint8List bytes, {
Key? key,
double? width,
double? height,
BoxFit fit = BoxFit.cover,
int? maxWidth,
int? maxHeight,
Widget? placeholder,
Widget? errorWidget,
}) =>
OptimizedImage(
key: key,
bytes: bytes,
width: width,
height: height,
fit: fit,
maxWidth: maxWidth,
maxHeight: maxHeight,
placeholder: placeholder,
errorWidget: errorWidget,
);