AppDivider constructor

const AppDivider({
  1. Key? key,
  2. double thickness = 1,
  3. Color? color,
  4. double indent = 0,
  5. double endIndent = 0,
  6. Axis direction = Axis.horizontal,
  7. double length = double.infinity,
  8. BorderRadius? borderRadius,
})

Creates a new AppDivider.

Implementation

const AppDivider({
  super.key,
  this.thickness = 1,
  this.color,
  this.indent = 0,
  this.endIndent = 0,
  this.direction = Axis.horizontal,
  this.length = double.infinity,
  this.borderRadius,
});