LinkPropertyView constructor

const LinkPropertyView({
  1. Key? key,
  2. required LinkSchema link,
  3. required Map<String, Schema> schemas,
  4. required IsarObject object,
  5. required void onUpdate(
    1. int id,
    2. String path,
    3. dynamic value
    ),
})

Implementation

const LinkPropertyView({
  super.key,
  required this.link,
  required this.schemas,
  required this.object,
  required this.onUpdate,
});