updateValue method

void updateValue(
  1. T value
)

This method will update the notifier

Implementation

void updateValue(T value) {
  notifier.value = value;
}