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