fileImage method

Widget fileImage()

Implementation

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