ExcludeReplicas.fromJson constructor

ExcludeReplicas.fromJson(
  1. Map json_
)

Implementation

ExcludeReplicas.fromJson(core.Map json_)
    : this(
        replicaSelections: json_.containsKey('replicaSelections')
            ? (json_['replicaSelections'] as core.List)
                .map((value) => ReplicaSelection.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );