buildRowRating method

Widget buildRowRating()

Implementation

Widget buildRowRating() {
  final List<Widget> children = [];
  children.add(
    Row(
      children: buildNormalRow(),
    ),
  );
  children.add(
    Row(
      children: buildRow(),
    ),
  );
  return SizedBox(
    width: widget.count * widget.size + (widget.count - 1) * widget.padding,
    child: Stack(
      children: children,
    ),
  );
}