Seo.html constructor

const Seo.html({
  1. Key? key,
  2. required String html,
  3. required Widget child,
})

Implementation

const Seo.html({
  super.key,
  required String html,
  required this.child,
});