toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (description != null) 'description': description!,
  if (displayName != null) 'displayName': displayName!,
  if (name != null) 'name': name!,
  if (testCasesConfig != null) 'testCasesConfig': testCasesConfig!,
  if (updateTime != null) 'updateTime': updateTime!,
  if (versionConfigs != null) 'versionConfigs': versionConfigs!,
  if (webhookConfig != null) 'webhookConfig': webhookConfig!,
};