build method

  1. @override
dynamic build(
  1. dynamic context
)

Implementation

@override
Widget build(BuildContext context) {
  return Card(
    margin: EdgeInsets.zero,
    color: color,
    elevation: elevation,
    shape: RoundedRectangleBorder(
      borderRadius: borderRadius,
      side: border,
    ),
    child: child,
  );
}