toJson method

Map<String, dynamic> toJson()

Implementation

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