card method
Implementation
Widget card({
Color? backgroundColor,
double? elevation,
EdgeInsets? margin,
}) => Card(
clipBehavior: Clip.hardEdge,
margin: margin,
elevation: elevation,
color: backgroundColor,
surfaceTintColor: backgroundColor,
child: this,
);