PollOption.fromJSON constructor
Implementation
PollOption.fromJSON(Map<String, dynamic> json)
: optionId = json['optionId'],
text = json['text'],
attachment = json['attachment'] == null
? null
: MediaAttachment.fromJSON(json['attachment']),
voteCount = json['voteCount'],
isVotedByMe = json['isVotedByMe'];