ConvexButton constructor

const ConvexButton({
  1. Key? key,
  2. double? size,
  3. double? sigma,
  4. required Widget child,
  5. double? thickness,
  6. Color? backgroundColor,
  7. double? top,
})

Make new instance of ConvexButton

Implementation

const ConvexButton({
  Key? key,
  this.size,
  this.sigma,
  required this.child,
  this.thickness,
  this.backgroundColor,
  this.top,
}) : super(key: key);