toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final artifacts = this.artifacts;
  final contextId = this.contextId;
  final history = this.history;
  final id = this.id;
  final metadata = this.metadata;
  final status = this.status;
  return {
    'artifacts': ?artifacts,
    'contextId': ?contextId,
    'history': ?history,
    'id': ?id,
    'metadata': ?metadata,
    'status': ?status,
  };
}