toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowlistResult = this.allowlistResult;
final checkResults = this.checkResults;
final displayName = this.displayName;
final explanation = this.explanation;
final index = this.index;
final scope = this.scope;
return {
'allowlistResult': ?allowlistResult,
'checkResults': ?checkResults,
'displayName': ?displayName,
'explanation': ?explanation,
'index': ?index,
'scope': ?scope,
};
}