PatchRollout.fromJson constructor
PatchRollout.fromJson(
- Map json_
Implementation
PatchRollout.fromJson(core.Map json_)
: this(
disruptionBudget: json_.containsKey('disruptionBudget')
? FixedOrPercent.fromJson(json_['disruptionBudget']
as core.Map<core.String, core.dynamic>)
: null,
mode: json_['mode'] as core.String?,
);