MDivider constructor

const MDivider({
  1. Key? key,
  2. double? thickness,
  3. Color? color,
  4. double? size,
  5. Axis? orientation,
  6. bool? overflow,
  7. double? childMainAxisPadding,
  8. MDividerAlignment? childAlignment,
  9. BoxDecoration? childDecoration,
  10. Widget? child,
})

Implementation

const MDivider({
  super.key,
  this.thickness,
  this.color,
  this.size,
  this.orientation,
  this.overflow,
  this.childMainAxisPadding,
  this.childAlignment,
  this.childDecoration,
  this.child,
});