ObjectView constructor

const ObjectView({
  1. required String schemaName,
  2. required Map<String, IsarSchema> schemas,
  3. required IsarObject object,
  4. required void onUpdate(
    1. String path,
    2. dynamic value
    ),
  5. Key? key,
})

Implementation

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