fromMemoryRounded static method
Implementation
static Widget fromMemoryRounded(Uint8List bytes,
{double? height, double? width, BoxFit? fit, double scale: 1.0}) {
return fromMemory(bytes,
height: height,
width: width,
fit: fit,
scale: scale,
radius: _maxRadius);
}