BatchGetContactGroupsResponse.fromJson constructor

BatchGetContactGroupsResponse.fromJson(
  1. Map json_
)

Implementation

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