loadImageLocal static method
Implementation
static Widget loadImageLocal(String path, double width, double height, {BoxFit fit = BoxFit.cover, Uint8List? thumbdata}){
if(thumbdata == null) return Image.file(File(path), width: width, height: height, fit: fit,);
return Image.memory(thumbdata, width: width, height: height, fit: fit);
}