toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowList = this.allowList;
final denyList = this.denyList;
final namespace = this.namespace;
return {
'allowList': ?allowList,
'denyList': ?denyList,
'namespace': ?namespace,
};
}