provide method

Widget provide(
  1. Widget child
)

Wraps the app with a ChangeNotifierProvider to provide the tutorial state.

Implementation

Widget provide(Widget child) {
  return ChangeNotifierProvider.value(value: _state, child: child);
}