selectedRadio method

Widget selectedRadio(
  1. BuildContext context
)

Implementation

Widget selectedRadio(BuildContext context) {
  return Container(
    width: 20,
    height: 20,
    decoration: BoxDecoration(
      color: selectedColor, // border color
      shape: BoxShape.circle,
    ),
    child: Padding(
      padding: const EdgeInsets.all(6.0),
      child: Container(
        width: 7,
        height: 7,
        decoration: BoxDecoration(
          shape: BoxShape.circle,
          color: innerCircleColor, // border color
        ),
      ),
    ),
  );
}