whereNotRestricted method

Iterable<IFactSchema> whereNotRestricted()

Implementation

Iterable<IFactSchema> whereNotRestricted() {
  final restricted = factService.restrictedSchemas;
  return this.orEmpty().where((schema) {
    return !restricted.contains(schema.ref);
  });
}