toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final assignedGroups = this.assignedGroups;
  final attributes = this.attributes;
  final createTime = this.createTime;
  final databaseDeploymentDetails = this.databaseDeploymentDetails;
  final databaseDetails = this.databaseDetails;
  final hidden = this.hidden;
  final hideReason = this.hideReason;
  final hideTime = this.hideTime;
  final insightList = this.insightList;
  final labels = this.labels;
  final machineDetails = this.machineDetails;
  final name = this.name;
  final performanceData = this.performanceData;
  final sources = this.sources;
  final title = this.title;
  final updateTime = this.updateTime;
  return {
    'assignedGroups': ?assignedGroups,
    'attributes': ?attributes,
    'createTime': ?createTime,
    'databaseDeploymentDetails': ?databaseDeploymentDetails,
    'databaseDetails': ?databaseDetails,
    'hidden': ?hidden,
    'hideReason': ?hideReason,
    'hideTime': ?hideTime,
    'insightList': ?insightList,
    'labels': ?labels,
    'machineDetails': ?machineDetails,
    'name': ?name,
    'performanceData': ?performanceData,
    'sources': ?sources,
    'title': ?title,
    'updateTime': ?updateTime,
  };
}