networkImage method

Widget networkImage(
  1. String url
)

Implementation

Widget networkImage(String url) {
  return Image.network(
    url,
    width: width,
    color: color,
    height: height,
    fit: fit,
    errorBuilder: (context, obj, error) => _sizedPlaceholder(),
    colorBlendMode: blendMode,
  );
}