RolloutRolloutEntity.fromJson constructor
RolloutRolloutEntity.fromJson(
- Map json_
Implementation
RolloutRolloutEntity.fromJson(core.Map json_)
: this(
orchestratedEntity: json_.containsKey('orchestratedEntity')
? RolloutRolloutEntityOrchestratedEntity.fromJson(
json_['orchestratedEntity']
as core.Map<core.String, core.dynamic>,
)
: null,
);