BJHTitleImageValueCell constructor

BJHTitleImageValueCell({
  1. Key? key,
  2. double? leftRightPadding,
  3. required String title,
  4. String? imageValue,
  5. void onTap()?,
})

Implementation

BJHTitleImageValueCell({
  Key? key,
  this.leftRightPadding,
  required this.title,
  this.imageValue,
  this.onTap,
}) : super(key: key);