SeoControllerProvider constructor

const SeoControllerProvider({
  1. Key? key,
  2. required SeoController controller,
  3. required Widget child,
})

Creates a SeoControllerProvider with the required controller and child.

Implementation

const SeoControllerProvider({
  super.key,
  required this.controller,
  required this.child,
});