SeverityOverride.fromJson constructor
SeverityOverride.fromJson(
- Map json_
Implementation
SeverityOverride.fromJson(core.Map json_)
: this(
action: json_.containsKey('action')
? json_['action'] as core.String
: null,
severity: json_.containsKey('severity')
? json_['severity'] as core.String
: null,
);