body method

  1. @override
Card body(
  1. Widget content
)
override

Implementation

@override
Card body(Widget content) {
  return Card(
    key: key,
    color: color,
    shadowColor: shadowColor,
    surfaceTintColor: surfaceTintColor,
    elevation: elevation,
    shape: shape,
    borderOnForeground: borderOnForeground,
    clipBehavior: clipBehavior,
    margin: margin,
    semanticContainer: semanticContainer,
    child: content,
  );
}