assetImage method

Widget assetImage()

Implementation

Widget assetImage() {
  return Image.asset(
    path,
    color: color,
    width: width,
    height: height,
    fit: fit,
    errorBuilder: (context, exception, stackTrace) {
      return SizedBox(width: width, height: height);
    },
    colorBlendMode: blendMode,
  );
}