Card.outlined constructor
Create an outlined variant of Card.
Outlined cards have a visual boundary around the container. This can provide greater emphasis than the other types.
Implementation
const Card.outlined({
super.key,
this.color,
this.shadowColor,
this.surfaceTintColor,
this.elevation,
this.shape,
this.borderOnForeground = true,
this.margin,
this.clipBehavior,
this.child,
this.semanticContainer = true,
}) : assert(elevation == null || elevation >= 0.0),
_variant = _CardVariant.outlined;