toJson method

Map<String, dynamic> toJson()

Implementation

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