SeoContainer constructor
const
SeoContainer({
- Key? key,
- Widget? child,
- AlignmentGeometry? alignment,
- EdgeInsetsGeometry? padding,
- Color? color,
- Decoration? decoration,
- Decoration? foregroundDecoration,
- double? width,
- double? height,
- BoxConstraints? constraints,
- EdgeInsetsGeometry? margin,
- void onTap()?,
Creates a SeoContainer that works like a normal Container
but also outputs an HTML <div> for SEO.
Implementation
const SeoContainer({
super.key,
this.child,
this.alignment,
this.padding,
this.color,
this.decoration,
this.foregroundDecoration,
this.width,
this.height,
this.constraints,
this.margin,
this.onTap,
});