SeoConstrainedBox constructor
const
SeoConstrainedBox({
- Key? key,
- Widget? child,
- required BoxConstraints constraints,
- void onTap()?,
Creates a SeoContainer that works like a normal Container
but also outputs an HTML <div> for SEO.
Implementation
const SeoConstrainedBox({
super.key,
this.child,
required this.constraints,
this.onTap,
});