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