toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (categories != null)
        'categories': categories!.map((value) => value.toJson()).toList(),
      if (description != null) 'description': description!,
      if (kbArticleIds != null) 'kbArticleIds': kbArticleIds!,
      if (lastDeploymentChangeTime != null)
        'lastDeploymentChangeTime': lastDeploymentChangeTime!,
      if (moreInfoUrls != null) 'moreInfoUrls': moreInfoUrls!,
      if (revisionNumber != null) 'revisionNumber': revisionNumber!,
      if (supportUrl != null) 'supportUrl': supportUrl!,
      if (title != null) 'title': title!,
      if (updateId != null) 'updateId': updateId!,
    };