CustomerListDpcsResponse.fromJson constructor

CustomerListDpcsResponse.fromJson(
  1. 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(),
      );