fromMemoryRounded static method

Widget fromMemoryRounded(
  1. Uint8List bytes, {
  2. double? height,
  3. double? width,
  4. BoxFit? fit,
  5. double scale = 1.0,
})

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);
}