toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final authenticationType = this.authenticationType;
final keyStoreFile = this.keyStoreFile;
final keyStorePassword = this.keyStorePassword;
final keyStorePasswordSecretVersion = this.keyStorePasswordSecretVersion;
final password = this.password;
final passwordSecretVersion = this.passwordSecretVersion;
final redisClusterId = this.redisClusterId;
final securityProtocol = this.securityProtocol;
final servers = this.servers;
final technologyType = this.technologyType;
final trustStoreFile = this.trustStoreFile;
final trustStorePassword = this.trustStorePassword;
final trustStorePasswordSecretVersion =
this.trustStorePasswordSecretVersion;
final username = this.username;
return {
'authenticationType': ?authenticationType,
'keyStoreFile': ?keyStoreFile,
'keyStorePassword': ?keyStorePassword,
'keyStorePasswordSecretVersion': ?keyStorePasswordSecretVersion,
'password': ?password,
'passwordSecretVersion': ?passwordSecretVersion,
'redisClusterId': ?redisClusterId,
'securityProtocol': ?securityProtocol,
'servers': ?servers,
'technologyType': ?technologyType,
'trustStoreFile': ?trustStoreFile,
'trustStorePassword': ?trustStorePassword,
'trustStorePasswordSecretVersion': ?trustStorePasswordSecretVersion,
'username': ?username,
};
}