ConvexItem constructor

const ConvexItem({
  1. Key? key,
  2. required Widget? icon,
  3. required int index,
  4. required dynamic onTap(
    1. int
    ),
  5. String? title,
  6. TextStyle? titleTextStyle,
  7. bool? isEnable,
  8. double? itemSize,
  9. Color? color,
  10. bool isNeedIconColorFilter = true,
})

Implementation

const ConvexItem({
  super.key,
  required this.icon,
  required this.index,
  required this.onTap,
  this.title,
  this.titleTextStyle,
  this.isEnable,
  this.itemSize,
  this.color,
  this.isNeedIconColorFilter = true,
});