toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() => {
      'type': 'reasoning',
      'id': id,
      'summary': summary,
      if (encryptedContent != null) 'encrypted_content': encryptedContent,
      if (status != null) 'status': status!.toJson(),
    };