loadImageLocal function

Widget loadImageLocal(
  1. String path,
  2. double width,
  3. double height, {
  4. BoxFit fit = BoxFit.cover,
  5. Uint8List? thumbdata,
})

Implementation

Widget loadImageLocal(String path, double width, double height, {BoxFit fit = BoxFit.cover, Uint8List? thumbdata}){
  return NUIImageUtil.loadImageLocal(path, width, height, thumbdata: thumbdata);
}