M3EShapeContainer.clamShell constructor

const M3EShapeContainer.clamShell({
  1. Key? key,
  2. Widget? child,
  3. double? width,
  4. double? height,
  5. Color? color,
  6. Gradient? gradient,
  7. Clip clipBehavior = Clip.antiAlias,
})

Clam shell.

Implementation

const M3EShapeContainer.clamShell({
  super.key,
  this.child,
  this.width,
  this.height,
  this.color,
  this.gradient,
  this.clipBehavior = Clip.antiAlias,
}) : kind = M3EShapeKind.clamShell;