LoadImageFromPath function

Image? LoadImageFromPath(
  1. String path
)

Implementation

im.Image? LoadImageFromPath(String path){
  return im.decodeImage(File(path).readAsBytesSync());
}