PollOption.fromJson constructor
Implementation
factory PollOption.fromJson(Map<String, Object?> j) => PollOption(
id: j['id'] as String? ?? '',
text: j['text'] as String? ?? '',
voterIds: (j['voterIds'] as List?)?.cast<String>() ?? [],
);