button method

Widget button(
  1. Icon icon,
  2. double? iconSize
)

Implementation

Widget button(Icon icon, double? iconSize) {
  return IconButton(
    padding: EdgeInsets.zero,
    onPressed: () {},
    icon: icon,
    iconSize: iconSize ?? 24,
  );
}