ExcludeReplicas.fromJson constructor
ExcludeReplicas.fromJson(
- 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,
);