StarDisplay constructor

const StarDisplay({
  1. Key? key,
  2. int value = 0,
})

Implementation

const StarDisplay({Key? key, int value = 0})
    : super(
        key: key,
        value: value,
        filledStar: const Icon(Icons.star),
        unfilledStar: const Icon(Icons.star_border),
      );