fromAssetRounded static method

Widget fromAssetRounded(
  1. String asset, {
  2. double? height,
  3. double? width,
  4. BoxFit? fit,
  5. dynamic scale = 1.0,
})

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);
}