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