eye static method

Widget eye({
  1. double? width,
  2. double? height,
  3. required Color color,
})

Implementation

static Widget eye({double? width, double? height, required Color color}) {
  return SvgPicture.asset(
    "${path}icon-eye.svg",
    width: width,
    height: height,
    colorFilter: ColorFilter.mode(color, BlendMode.srcIn),
  );
}