fromAssetRounded static method
Implementation
static Widget fromAssetRounded(
String asset, {
double? height,
double? width,
BoxFit? fit,
scale: 1.0,
}) {
return fromAsset(asset,
width: width,
height: height,
fit: fit,
scale: scale,
radius: _maxRadius);
}