toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authenticationType = this.authenticationType;
  final connectionUrl = this.connectionUrl;
  final password = this.password;
  final passwordSecretVersion = this.passwordSecretVersion;
  final privateKeyFile = this.privateKeyFile;
  final privateKeyPassphraseSecret = this.privateKeyPassphraseSecret;
  final technologyType = this.technologyType;
  final username = this.username;
  return {
    'authenticationType': ?authenticationType,
    'connectionUrl': ?connectionUrl,
    'password': ?password,
    'passwordSecretVersion': ?passwordSecretVersion,
    'privateKeyFile': ?privateKeyFile,
    'privateKeyPassphraseSecret': ?privateKeyPassphraseSecret,
    'technologyType': ?technologyType,
    'username': ?username,
  };
}