StyleProvider constructor

StyleProvider({
  1. Key? key,
  2. required StyleHook style,
  3. required Widget child,
})

Provide style to provider, ConvexAppBar will bind to the provided style. See also:

Implementation

StyleProvider({Key? key, required this.style, required Widget child})
    : super(key: key, child: child);