fromFile static method
Implementation
static Widget fromFile(
File file, {
double radius: 0.0,
double? height,
double? width,
BoxFit? fit,
scale: 1.0,
}) {
var widget = Image.file(
file,
scale: scale,
fit: fit,
width: width,
height: height,
);
return _setItInContainer(_addRadius(widget, radius), width, height);
}