toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final executionSpec = this.executionSpec;
  final executionStatus = this.executionStatus;
  final labels = this.labels;
  final name = this.name;
  final notebook = this.notebook;
  final spark = this.spark;
  final state = this.state;
  final triggerSpec = this.triggerSpec;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'executionSpec': ?executionSpec,
    'executionStatus': ?executionStatus,
    'labels': ?labels,
    'name': ?name,
    'notebook': ?notebook,
    'spark': ?spark,
    'state': ?state,
    'triggerSpec': ?triggerSpec,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}