PropertyView constructor

const PropertyView({
  1. required IsarPropertySchema property,
  2. required dynamic value,
  3. required bool isId,
  4. required bool isIndexed,
  5. required void onUpdate(
    1. dynamic value
    ),
  6. Key? key,
})

Implementation

const PropertyView({
  required this.property,
  required this.value,
  required this.isId,
  required this.isIndexed,
  required this.onUpdate,
  super.key,
});