BatchAnnotateFilesResponse.fromJson constructor
BatchAnnotateFilesResponse.fromJson(
- Map json_
Implementation
BatchAnnotateFilesResponse.fromJson(core.Map json_)
: this(
responses: (json_['responses'] as core.List?)
?.map((value) => AnnotateFileResponse.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);