from static method

dynamic from(
  1. Map<String, dynamic> map
)

Implementation

static from(Map<String, dynamic> map) {
  return SurvicateAnswer(
    type: map[_answerType] as String?,
    id: map[_answerId] as int?,
    ids: List<int>.from(map[_answerIds] as List),
    value: map[_answerValue] as String?,
  );
}