authoredBy method
Implementation
List<ModeratorEntry> authoredBy(String a) {
List<ModeratorEntry> _ll = [];
if (_sigilsChecked) {
if (_authors[a] == null) return _ll;
_authors[a]!.forEach((element) {
_ll.add(_data[element]!);
});
return _ll;
}
_sigilIndex();
return authoredBy(a);
}