getImageFromImage method

Image getImageFromImage(
  1. Uint8List bytes,
  2. double width
)

Implementation

Image getImageFromImage(Uint8List bytes, double width) {
  var i = Image.memory(
    bytes,
    fit: BoxFit.fill,
    width: width,
  );
  return i;
}