assetImage method

Widget assetImage(
  1. String assetPath
)

Implementation

Widget assetImage(String assetPath) {
  return Image.asset(
    assetPath,
    color: color,
    width: width,
    height: height,
    fit: fit,
    errorBuilder: (context, exception, stackTrace) => _sizedPlaceholder(),
    colorBlendMode: blendMode,
  );
}