AppCard constructor

const AppCard({
  1. Key? key,
  2. required Widget child,
  3. double? elevation,
  4. Color? color,
  5. Color? surfaceTintColor,
  6. ShapeBorder? shape,
  7. Clip? clipBehavior,
  8. EdgeInsetsGeometry? margin,
  9. bool? semanticContainer = true,
})

Implementation

const AppCard({
  super.key,
  required this.child,
  this.elevation,
  this.color,
  this.surfaceTintColor,
  this.shape,
  this.clipBehavior,
  this.margin,
  this.semanticContainer = true,
});