toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final contents = this.contents;
  final model = this.model;
  final vertexRagStore = this.vertexRagStore;
  return {
    'contents': ?contents,
    'model': ?model,
    'vertexRagStore': ?vertexRagStore,
  };
}