toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final append = this.append;
  final artifact = this.artifact;
  final contextId = this.contextId;
  final lastChunk = this.lastChunk;
  final metadata = this.metadata;
  final taskId = this.taskId;
  return {
    'append': ?append,
    'artifact': ?artifact,
    'contextId': ?contextId,
    'lastChunk': ?lastChunk,
    'metadata': ?metadata,
    'taskId': ?taskId,
  };
}