emptySearch static method
Implementation
static Widget emptySearch({double? width, double? height, Color? color}) {
return SvgPicture.asset(
"${path}empty-search-bg.svg",
width: width ?? 110,
height: height ?? 110,
colorFilter:
color != null ? ColorFilter.mode(color, BlendMode.srcIn) : null,
);
}