LintPolicyResponse.fromJson constructor
LintPolicyResponse.fromJson(
- Map json_
Implementation
LintPolicyResponse.fromJson(core.Map json_)
: this(
lintResults: (json_['lintResults'] as core.List?)
?.map((value) => LintResult.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);