filePathsValueUpdate method

void filePathsValueUpdate(
  1. List<String>? value, {
  2. bool updateParent = true,
  3. bool emitEvent = true,
})

Implementation

void filePathsValueUpdate(
  List<String>? value, {
  bool updateParent = true,
  bool emitEvent = true,
}) {
  filePathsControl?.updateValue(value,
      updateParent: updateParent, emitEvent: emitEvent);
}