notifyChangeNamed method

void notifyChangeNamed(
  1. List<String> names
)

Notifying builders with names that the store has been updated and need rebuild.

Implementation

void notifyChangeNamed(final List<String> names) {
  if (names.isNotEmpty) _controllerNames.add([...names]);
}