uidValueUpdate method

void uidValueUpdate(
  1. String value, {
  2. bool updateParent = true,
  3. bool emitEvent = true,
})

Implementation

void uidValueUpdate(
  String value, {
  bool updateParent = true,
  bool emitEvent = true,
}) {
  uidControl.updateValue(value,
      updateParent: updateParent, emitEvent: emitEvent);
}