CodeNestDivider constructor

const CodeNestDivider({
  1. Key? key,
  2. Axis direction = Axis.horizontal,
  3. double thickness = 1.0,
  4. double length = double.infinity,
  5. Color? color,
  6. double indent = 0.0,
  7. double endIndent = 0.0,
  8. DividerStyle style = DividerStyle.solid,
})

Implementation

const CodeNestDivider({
  super.key,
  this.direction = Axis.horizontal,
  this.thickness = 1.0,
  this.length = double.infinity,
  this.color,
  this.indent = 0.0,
  this.endIndent = 0.0,
  this.style = DividerStyle.solid,
});