SeverityOverride.fromJson constructor

SeverityOverride.fromJson(
  1. 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,
      );