QQUserAnswer.fromJson constructor

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

Implementation

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