CustomDividor constructor

const CustomDividor({
  1. required String title,
  2. TextStyle? titleStyle,
  3. double? bottomSpacing,
  4. Color? color,
  5. double? fontSize,
  6. double? lineWidth,
  7. Key? key,
})

Implementation

const CustomDividor({
  required this.title,
  this.titleStyle,
  this.bottomSpacing,
  this.color,
  this.fontSize,
  this.lineWidth,
  super.key,
});