toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final authenticationMode = this.authenticationMode;
final connectionString = this.connectionString;
final gcpOracleDatabaseId = this.gcpOracleDatabaseId;
final password = this.password;
final passwordSecretVersion = this.passwordSecretVersion;
final sessionMode = this.sessionMode;
final technologyType = this.technologyType;
final username = this.username;
final walletFile = this.walletFile;
return {
'authenticationMode': ?authenticationMode,
'connectionString': ?connectionString,
'gcpOracleDatabaseId': ?gcpOracleDatabaseId,
'password': ?password,
'passwordSecretVersion': ?passwordSecretVersion,
'sessionMode': ?sessionMode,
'technologyType': ?technologyType,
'username': ?username,
'walletFile': ?walletFile,
};
}