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