HealthSourcesGetHealthResponseSourceInfo.fromJson constructor

HealthSourcesGetHealthResponseSourceInfo.fromJson(
  1. Map json_
)

Implementation

HealthSourcesGetHealthResponseSourceInfo.fromJson(core.Map json_)
  : this(
      backends: (json_['backends'] as core.List?)
          ?.map(
            (value) =>
                HealthSourcesGetHealthResponseSourceInfoBackendInfo.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      forwardingRule: json_['forwardingRule'] as core.String?,
      source: json_['source'] as core.String?,
    );