fromNetworkRounded static method

Widget fromNetworkRounded(
  1. String? url, {
  2. double? height,
  3. double? width,
  4. BoxFit? fit,
  5. String? placeHolder,
  6. Widget? placeHolderWidget,
  7. dynamic scale = 1.0,
  8. Map<String, String>? headers,
  9. Widget loadingBuilder(
    1. BuildContext context,
    2. Widget child,
    3. ImageChunkEvent? loadingProgress
    )?,
})

Implementation

static Widget fromNetworkRounded(
  String? url, {
  double? height,
  double? width,
  BoxFit? fit,
  String? placeHolder,
  Widget? placeHolderWidget,
  scale: 1.0,
  Map<String, String>? headers,
  Widget Function(
    BuildContext context,
    Widget child,
    ImageChunkEvent? loadingProgress,
  )?
      loadingBuilder,
}) {
  return fromNetwork(
    url,
    width: width,
    height: height,
    radius: _maxRadius,
    fit: fit,
    scale: scale,
    placeHolder: placeHolder,
    placeHolderWidget: placeHolderWidget,
    headers: headers,
    loadingBuilder: loadingBuilder,
  );
}