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