Collection constructor

const Collection({
  1. bool inheritance = true,
  2. String? accessor,
  3. Set<String> ignore = const {},
})

Annotation to create an Isar collection.

Implementation

const Collection({
  this.inheritance = true,
  this.accessor,
  this.ignore = const {},
});