toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (categories != null) 'categories': categories!,
  if (description != null) 'description': description!,
  if (identity != null) 'identity': identity!,
  if (kbArticleIds != null) 'kbArticleIds': kbArticleIds!,
  if (lastPublishedTimestamp != null)
    'lastPublishedTimestamp': lastPublishedTimestamp!,
  if (supportUrl != null) 'supportUrl': supportUrl!,
  if (title != null) 'title': title!,
};