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