getImageSvg method

Widget getImageSvg(
  1. String url
)

Implementation

Widget getImageSvg(String url) {
  if (width == 0 || height == 0) {
    return AspectRatio(
      aspectRatio: 1,
      child: Image.asset(url, fit: boxfit, color: color, package: package),
    );
  } else {
    return Image.asset(url,
        width: width,
        height: height,
        fit: boxfit,
        color: color,
        package: package);
  }
}