client will consume lemma as single object but be capable of handling json lemma as list

This commit is contained in:
William Jordan-Cooley 2024-07-16 09:06:58 -04:00
parent 0ac4b664ce
commit c4ef728578

View file

@ -62,7 +62,7 @@ class PangeaToken {
Map<String, dynamic> toJson() => {
_textKey: text.toJson(),
_lemmaKey: lemma.toJson(),
_lemmaKey: [lemma.toJson()],
'pos': pos,
'morph': morph,
};