toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (config != null) 'config': config!,
  if (expandedConfig != null) 'expandedConfig': expandedConfig!,
  if (id != null) 'id': id!,
  if (imports != null) 'imports': imports!,
  if (insertTime != null) 'insertTime': insertTime!,
  if (layout != null) 'layout': layout!,
  if (manifestSizeBytes != null) 'manifestSizeBytes': manifestSizeBytes!,
  if (manifestSizeLimitBytes != null)
    'manifestSizeLimitBytes': manifestSizeLimitBytes!,
  if (name != null) 'name': name!,
  if (selfLink != null) 'selfLink': selfLink!,
};