toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final denyAccessState = this.denyAccessState;
  final policy = this.policy;
  final relevance = this.relevance;
  final ruleExplanations = this.ruleExplanations;
  return {
    'denyAccessState': ?denyAccessState,
    'policy': ?policy,
    'relevance': ?relevance,
    'ruleExplanations': ?ruleExplanations,
  };
}