BsImage.network constructor
BsImage.network(})
Creates a BsImage from a network URL.
Implementation
factory BsImage.network(
String src, {
Key? key,
bool fluid = false,
bool thumbnail = false,
bool rounded = false,
bool circle = false,
AlignmentGeometry? alignment,
double? width,
double? height,
BoxFit? fit,
String? semanticLabel,
}) {
return BsImage(
key: key,
image: NetworkImage(src),
fluid: fluid,
thumbnail: thumbnail,
rounded: rounded,
circle: circle,
alignment: alignment,
width: width,
height: height,
fit: fit,
semanticLabel: semanticLabel,
);
}