attach method

void attach()

Registers this watcher with the Flutter WidgetsBinding. Call this once, typically in initState or a service constructor.

Implementation

void attach() {
  WidgetsBinding.instance.addObserver(this);
}