MastodonPollOption constructor

const MastodonPollOption({
  1. required String title,
  2. int? votesCount,
})

Implementation

const MastodonPollOption({
  required this.title,
  this.votesCount,
});