GrxDashedDivider constructor

GrxDashedDivider({
  1. Key? key,
  2. String? title,
  3. EdgeInsets padding = EdgeInsets.zero,
  4. double stroke = 1.0,
  5. double dashSize = 3.0,
  6. Color? color,
})

Implementation

GrxDashedDivider({
  super.key,
  this.title,
  this.padding = EdgeInsets.zero,
  this.stroke = 1.0,
  this.dashSize = 3.0,
  final Color? color,
}) : color = color ?? GrxColors.primary.shade600;