DateOptionWrapper constructor

const DateOptionWrapper({
  1. Key? key,
  2. required Color backColor,
  3. required String title,
  4. TextStyle? textStyle,
  5. BorderRadius? radius,
  6. Function? onTap,
  7. EdgeInsetsGeometry? padding,
  8. EdgeInsetsGeometry? margin,
})

Implementation

const DateOptionWrapper({
  super.key,
  required this.backColor,
  required this.title,
  this.textStyle,
  this.radius,
  this.onTap,
  this.padding,
  this.margin,
});