PropertyValue constructor

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

Implementation

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