fromNetworkRounded static method
Widget
fromNetworkRounded(
- String? url, {
- double? height,
- double? width,
- BoxFit? fit,
- String? placeHolder,
- Widget? placeHolderWidget,
- dynamic scale = 1.0,
- Widget loadingBuilder(
- BuildContext context,
- Widget child,
- 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,
);
}