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