UserAnswer.fromJson constructor

UserAnswer.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory UserAnswer.fromJson(Map<String, dynamic> json) => UserAnswer(
      value: json['value'] as String,
      identifiers: List<String>.from(json['identifiers'] as List),
    );