getWidget method

Image getWidget(
  1. BoxFit fit
)

Implementation

Image getWidget(BoxFit fit){
  return Image.memory(
    Uint8List.fromList(im.encodePng(this))!,
    fit: fit,
  );
}