StateX<T extends StatefulWidget> constructor

StateX<T extends StatefulWidget>({
  1. StateXController? controller,
  2. bool? runAsync,
  3. bool? useInherited,
  4. @Deprecated('Always route-aware now.') bool? routeAware,
  5. bool? printEvents,
})

Default useInherited to false

Implementation

StateX({
  super.controller,
  super.runAsync,
  super.useInherited,
  @Deprecated('Always route-aware now.') bool? routeAware,
  super.printEvents,
});