CurveCutText constructor

const CurveCutText({
  1. Key? key,
  2. required String title,
  3. double radius = 80.0,
  4. Color curveColor = Colors.white,
})

Implementation

const CurveCutText({
  Key? key,
  required this.title,
  this.radius = 80.0,
  this.curveColor = Colors.white,
}) : super(key: key);