SegmentFlipCard constructor

const SegmentFlipCard(
  1. String title, {
  2. Key? key,
  3. SegmentPos pos = SegmentPos.left,
  4. double angle = 0,
  5. Color cardBgColor = Colors.white,
  6. TextStyle titleStyle = const TextStyle(color: Colors.black87, fontSize: 15),
  7. double borderRadius = 25,
})

Implementation

const SegmentFlipCard(
  this.title, {
  Key? key,
  this.pos = SegmentPos.left,
  this.angle = 0,
  this.cardBgColor = Colors.white,
  this.titleStyle = const TextStyle(color: Colors.black87, fontSize: 15),
  this.borderRadius = 25,
}) : super(key: key);