KinDivider constructor

const KinDivider({
  1. Key? key,
  2. double spacing = KinSpacing.md,
  3. Axis direction = Axis.horizontal,
  4. double thickness = 0.5,
  5. double? indent,
  6. double? endIndent,
  7. String? label,
  8. Color? color,
})

Implementation

const KinDivider({
  super.key,
  this.spacing = KinSpacing.md,
  this.direction = Axis.horizontal,
  this.thickness = 0.5,
  this.indent,
  this.endIndent,
  this.label,
  this.color,
});