RpoConfig.fromJson constructor
RpoConfig.fromJson(
- Map json_
Implementation
RpoConfig.fromJson(core.Map json_)
: this(
exclusionWindows: (json_['exclusionWindows'] as core.List?)
?.map((value) => ExclusionWindow.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
targetRpoMinutes: json_['targetRpoMinutes'] as core.int?,
);