fromFileRounded static method

Widget fromFileRounded(
  1. File file, {
  2. double radius = 0.0,
  3. double? height,
  4. double? width,
  5. BoxFit? fit,
  6. dynamic scale = 1.0,
})

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