Divider constructor

const Divider({
  1. Key? key,
  2. Widget? child,
  3. Widget? children,
  4. bool dashed = false,
  5. DividerOrientation orientation = DividerOrientation.center,
  6. double? orientationMargin,
  7. bool plain = false,
  8. Axis type = Axis.horizontal,
})

Implementation

const Divider({
  Key? key,
  this.child,
  this.children,
  this.dashed = false,
  this.orientation = DividerOrientation.center,
  this.orientationMargin,
  this.plain = false,
  this.type = Axis.horizontal,
}) : super(key: key);