toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final condition = this.condition;
  final createTime = this.createTime;
  final description = this.description;
  final etag = this.etag;
  final labels = this.labels;
  final name = this.name;
  final serialPipeline = this.serialPipeline;
  final suspended = this.suspended;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'condition': ?condition,
    'createTime': ?createTime,
    'description': ?description,
    'etag': ?etag,
    'labels': ?labels,
    'name': ?name,
    'serialPipeline': ?serialPipeline,
    'suspended': ?suspended,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}