toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final integrationState = this.integrationState;
final name = this.name;
final testCertificate = this.testCertificate;
return {
'integrationState': ?integrationState,
'name': ?name,
'testCertificate': ?testCertificate,
};
}