fromFileRounded static method
Implementation
static Widget fromFileRounded(
File file, {
double radius: 0.0,
double? height,
double? width,
BoxFit? fit,
scale: 1.0,
}) {
return fromFile(file,
radius: _maxRadius,
height: height,
width: width,
fit: fit,
scale: scale);
}