CustomerListConfigurationsResponse.fromJson constructor

CustomerListConfigurationsResponse.fromJson(
  1. Map json_
)

Implementation

CustomerListConfigurationsResponse.fromJson(core.Map json_)
  : this(
      configurations:
          (json_['configurations'] as core.List?)
              ?.map(
                (value) => Configuration.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );