ObjectView constructor

const ObjectView({
  1. Key? key,
  2. bool root = false,
  3. required String schemaName,
  4. required Map<String, Schema> schemas,
  5. required IsarObject object,
  6. required void onUpdate(
    1. String collection,
    2. int? id,
    3. String path,
    4. dynamic value,
    ),
})

Implementation

const ObjectView({
  super.key,
  this.root = false,
  required this.schemaName,
  required this.schemas,
  required this.object,
  required this.onUpdate,
});