search static method
Implementation
static Widget search({double width = 30, double height = 30, Color? color}) {
return Image(
width: width,
height: height,
color: color,
image: AssetImage('assets/images/search.png', package: packageName),
fit: BoxFit.fill,
);
}