COutline constructor

const COutline({
  1. Key? key,
  2. required Widget child,
  3. Color color = CColors.white0,
  4. double outlineWidth = 8,
  5. bool outlined = false,
  6. int animationDuration = 250,
  7. BorderRadius? borderRadius,
  8. Curve animationCurve = Curves.easeInOut,
})

Implementation

const COutline({
  Key? key,
  required this.child,
  this.color = CColors.white0,
  this.outlineWidth = 8,
  this.outlined = false,
  this.animationDuration = 250,
  this.borderRadius,
  this.animationCurve = Curves.easeInOut,
}) : super(key: key);