MultiFormatImage.network constructor Null safety
Implementation
factory MultiFormatImage.network(
String url, {
required ImageFormat format,
double? width,
double? height,
BoxFit? fit,
Color? color,
}) {
return MultiFormatImage._(
resource: url,
format: format,
width: width,
height: height,
fit: fit,
color: color,
resourceType: ResourceType.network,
);
}