getDefaultImage static method

dynamic getDefaultImage({
  1. Color? color,
})

Get the default image to show the error image from memory

Implementation

static getDefaultImage({Color? color}) =>
    SvgPicture.memory(getUintList(errorImage),
        colorFilter: ColorFilter.mode(
          color ?? Colors.white,
          BlendMode.srcIn,
        ));