toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiKey = this.apiKey;
final appId = this.appId;
final appInstallationId = this.appInstallationId;
final appSlug = this.appSlug;
final hostUri = this.hostUri;
final privateKeySecretVersion = this.privateKeySecretVersion;
final serverVersion = this.serverVersion;
final serviceDirectoryConfig = this.serviceDirectoryConfig;
final sslCa = this.sslCa;
final webhookSecretSecretVersion = this.webhookSecretSecretVersion;
return {
'apiKey': ?apiKey,
'appId': ?appId,
'appInstallationId': ?appInstallationId,
'appSlug': ?appSlug,
'hostUri': ?hostUri,
'privateKeySecretVersion': ?privateKeySecretVersion,
'serverVersion': ?serverVersion,
'serviceDirectoryConfig': ?serviceDirectoryConfig,
'sslCa': ?sslCa,
'webhookSecretSecretVersion': ?webhookSecretSecretVersion,
};
}