validateFellowship method

bool validateFellowship(
  1. String fellowship
)

Implementation

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