notify static method

void notify(
  1. String name, {
  2. Object? value,
})

Implementation

static void notify(String name, {Object? value}) {
  final notifier = of(name);
  notifier._notify(value);
}