dataValuePatch method

void dataValuePatch(
  1. T? value, {
  2. bool updateParent = true,
  3. bool emitEvent = true,
})

Implementation

void dataValuePatch(
  T? value, {
  bool updateParent = true,
  bool emitEvent = true,
}) {
  dataControl?.patchValue(value,
      updateParent: updateParent, emitEvent: emitEvent);
}