getPart method

Widget getPart(
  1. bool isActive
)

Implementation

Widget getPart(bool isActive) => Container(
  height: 25,
  width: 25,
  color: isActive ? Colors.green : Colors.white,
);