from static method
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?,
);
}