ServiceScope.withState constructor

ServiceScope.withState({
  1. Key? key,
  2. required Widget child,
})

Implementation

ServiceScope.withState({
  super.key,
  required Widget child,
}) : super(child: StateScope(child: child));