toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (configuredCapabilities != null)
    'configuredCapabilities': configuredCapabilities!,
  if (createTime != null) 'createTime': createTime!,
  if (displayName != null) 'displayName': displayName!,
  if (lifecycleState != null) 'lifecycleState': lifecycleState!,
  if (managementProject != null) 'managementProject': managementProject!,
  if (name != null) 'name': name!,
  if (parent != null) 'parent': parent!,
  if (tags != null) 'tags': tags!,
};