RuleExecutionResult.fromJson constructor

RuleExecutionResult.fromJson(
  1. Map json_
)

Implementation

RuleExecutionResult.fromJson(core.Map json_)
    : this(
        message: json_['message'] as core.String?,
        resultCount: json_['resultCount'] as core.String?,
        rule: json_['rule'] as core.String?,
        scannedResourceCount: json_['scannedResourceCount'] as core.String?,
        state: json_['state'] as core.String?,
      );