validateFellowship method
Implementation
bool validateFellowship(String fellowship) {
final result = fellowshipsStore.findFirstSync(_instance,
finder: Finder(
filter: Filter.and([
Filter.equals("name", fellowship),
])));
return result != null;
}