ShapeOfView constructor

ShapeOfView({
  1. Key? key,
  2. Widget? child,
  3. double elevation = 4,
  4. Shape? shape,
  5. Clip clipBehavior = Clip.antiAlias,
  6. double? width,
  7. double? height,
})

Implementation

ShapeOfView({
  Key? key,
  this.child,
  this.elevation = 4,
  this.shape,
  this.clipBehavior = Clip.antiAlias,
  this.width,
  this.height,
}) : super(key: key);