mapSingleLabel method
Implementation
Widget mapSingleLabel() {
return Tooltip(
message: widget.quizAnswer.label.capitalize(),
child: Text(
widget.quizAnswer.shortLabel?.capitalize() ?? widget.quizAnswer.label.capitalize(),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
);
}