CarpenterCard constructor

const CarpenterCard({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? padding,
  4. bool muted = false,
  5. Color? backgroundColor,
})

Создает card-поверхность.

Implementation

const CarpenterCard({
  super.key,
  required this.child,
  this.padding,
  this.muted = false,
  this.backgroundColor,
});