StatefulObserverWidget constructor

const StatefulObserverWidget({
  1. Key? key,
  2. ReactiveContext? context,
  3. String? name,
})

Initializes key, context and name for subclasses.

Implementation

const StatefulObserverWidget(
    {super.key, ReactiveContext? context, String? name})
    : _name = name,
      _context = context;