search static method

Widget search({
  1. double width = 30,
  2. double height = 30,
  3. Color? color,
})

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,
  );
}