toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final additionalImpact = this.additionalImpact;
  final associatedInsights = this.associatedInsights;
  final content = this.content;
  final description = this.description;
  final etag = this.etag;
  final lastRefreshTime = this.lastRefreshTime;
  final name = this.name;
  final primaryImpact = this.primaryImpact;
  final priority = this.priority;
  final recommenderSubtype = this.recommenderSubtype;
  final stateInfo = this.stateInfo;
  final targetResources = this.targetResources;
  final xorGroupId = this.xorGroupId;
  return {
    'additionalImpact': ?additionalImpact,
    'associatedInsights': ?associatedInsights,
    'content': ?content,
    'description': ?description,
    'etag': ?etag,
    'lastRefreshTime': ?lastRefreshTime,
    'name': ?name,
    'primaryImpact': ?primaryImpact,
    'priority': ?priority,
    'recommenderSubtype': ?recommenderSubtype,
    'stateInfo': ?stateInfo,
    'targetResources': ?targetResources,
    'xorGroupId': ?xorGroupId,
  };
}