card method
Wraps widget with Card
Implementation
Widget card({
Color? color,
double? elevation,
ShapeBorder? shape,
EdgeInsetsGeometry? margin,
}) {
return Card(
color: color,
elevation: elevation,
shape: shape,
margin: margin,
child: this,
);
}