Convert to JSON map.
Map<String, dynamic> toJson() => { 'id': id, 'text': text, 'depth': depth, 'children': children.map((TocEntry e) => e.toJson()).toList(), };