toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (capacity != null) 'capacity': capacity!,
      if (createTime != null) 'createTime': createTime!,
      if (description != null) 'description': description!,
      if (items != null) 'items': items!,
      if (labels != null) 'labels': labels!,
      if (name != null) 'name': name!,
      if (selfLink != null) 'selfLink': selfLink!,
      if (type != null) 'type': type!,
      if (updateTime != null) 'updateTime': updateTime!,
    };