toJson method

Map<String, dynamic> toJson()

Implementation

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