toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final asmService = this.asmService;
  final hostname = this.hostname;
  final password = this.password;
  final passwordSet = this.passwordSet;
  final port = this.port;
  final ssl = this.ssl;
  final username = this.username;
  return {
    'asmService': ?asmService,
    'hostname': ?hostname,
    'password': ?password,
    'passwordSet': ?passwordSet,
    'port': ?port,
    'ssl': ?ssl,
    'username': ?username,
  };
}