PropertyValue constructor

const PropertyValue(
  1. dynamic value, {
  2. Key? key,
  3. required Map<String, dynamic>? enumMap,
  4. required IsarType type,
  5. void onUpdate(
    1. dynamic newValue
    )?,
})

Implementation

const PropertyValue(
  this.value, {
  super.key,
  required this.enumMap,
  required this.type,
  this.onUpdate,
});