maximumVotesPerPersonDescription method
The description shown under the "Maximum votes per person" stepper in the poll creator, describing the allowed vote range (e.g. "Choose between 2–10 options").
Implementation
@override
String maximumVotesPerPersonDescription([Range<int>? range]) {
final (:min, :max) = range ?? (min: 2, max: 10);
return '$min〜$max個の選択肢から選ぶ';
}