ListAnswersResponse.fromJson constructor
ListAnswersResponse.fromJson(
- Map json_
Implementation
ListAnswersResponse.fromJson(core.Map json_)
: this(
answers: (json_['answers'] as core.List?)
?.map((value) =>
Answer.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
totalSize: json_['totalSize'] as core.int?,
);