SeoSizedBox constructor

const SeoSizedBox({
  1. Key? key,
  2. Widget? child,
  3. double? width,
  4. double? height,
  5. void onTap()?,
})

Creates a SeoSizedBox that works like a normal SizedBox but also outputs an HTML <div> for SEO.

Implementation

const SeoSizedBox({
  super.key,
  this.child,
  this.width,
  this.height,
  this.onTap,
});