SeoController constructor

const SeoController({
  1. Key? key,
  2. bool enabled = true,
  3. required SeoTree tree,
  4. required Widget child,
})

Implementation

const SeoController({
  super.key,
  this.enabled = true,
  required this.tree,
  required this.child,
});