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