loadFileAsImage function
Implementation
Widget loadFileAsImage(String path, {double? height, double? width, BoxFit? fit, Color? color}) {
print("Error: loadFileAsImage called on web for path: $path");
return Placeholder(fallbackHeight: height ?? 24, fallbackWidth: width ?? 24);
}