ElSimpleModelValue<D> constructor

const ElSimpleModelValue<D>(
  1. dynamic modelValue, {
  2. Key? key,
  3. ElModelValueType modelType = ElModelValueType.single,
  4. ValueChanged<D?>? onChanged,
})

Implementation

const ElSimpleModelValue(
  this.modelValue, {
  super.key,
  this.modelType = ElModelValueType.single,
  this.onChanged,
});