toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endTime = this.endTime;
  final executionSpec = this.executionSpec;
  final labels = this.labels;
  final message = this.message;
  final name = this.name;
  final retryCount = this.retryCount;
  final service = this.service;
  final serviceJob = this.serviceJob;
  final startTime = this.startTime;
  final state = this.state;
  final trigger = this.trigger;
  final uid = this.uid;
  return {
    'endTime': ?endTime,
    'executionSpec': ?executionSpec,
    'labels': ?labels,
    'message': ?message,
    'name': ?name,
    'retryCount': ?retryCount,
    'service': ?service,
    'serviceJob': ?serviceJob,
    'startTime': ?startTime,
    'state': ?state,
    'trigger': ?trigger,
    'uid': ?uid,
  };
}