toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final queryPlansPerMinute = this.queryPlansPerMinute;
final queryStringLength = this.queryStringLength;
final recordApplicationTags = this.recordApplicationTags;
final recordClientAddress = this.recordClientAddress;
return {
'queryPlansPerMinute': ?queryPlansPerMinute,
'queryStringLength': ?queryStringLength,
'recordApplicationTags': ?recordApplicationTags,
'recordClientAddress': ?recordClientAddress,
};
}