HMSPollQuestionOption.fromMap constructor

HMSPollQuestionOption.fromMap(
  1. Map map
)

Implementation

factory HMSPollQuestionOption.fromMap(Map map) {
  return HMSPollQuestionOption(
    index: map['index'],
    text: map['text'],
    voteCount: map['vote_count'],
    weight: map['weight'],
  );
}