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