toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final databaseProperties = this.databaseProperties;
  final haHosts = this.haHosts;
  final resources = this.resources;
  final sid = this.sid;
  final topologyType = this.topologyType;
  return {
    'databaseProperties': ?databaseProperties,
    'haHosts': ?haHosts,
    'resources': ?resources,
    'sid': ?sid,
    'topologyType': ?topologyType,
  };
}