AtomicDivider constructor

const AtomicDivider({
  1. Key? key,
  2. double thickness = 1,
  3. Color? color,
  4. double indent = 0,
  5. double endIndent = 0,
  6. EdgeInsets? margin,
  7. AtomicDividerOrientation orientation = AtomicDividerOrientation.horizontal,
  8. AtomicDividerVariant variant = AtomicDividerVariant.solid,
  9. String? text,
  10. TextStyle? textStyle,
})

Implementation

const AtomicDivider({
  super.key,
  this.thickness = 1,
  this.color,
  this.indent = 0,
  this.endIndent = 0,
  this.margin,
  this.orientation = AtomicDividerOrientation.horizontal,
  this.variant = AtomicDividerVariant.solid,
  this.text,
  this.textStyle,
});