AntdDivider constructor

const AntdDivider({
  1. Key? key,
  2. AntdColor? color,
  3. Widget? child,
  4. bool vertical = false,
  5. AntdDividerPosition? position,
  6. AntdDividerStyle? style,
  7. AntdStyleBuilder<AntdDividerStyle, AntdDivider>? styleBuilder,
})

Implementation

const AntdDivider({
  super.key,
  this.color,
  this.child,
  this.vertical = false,
  this.position,
  super.style,
  super.styleBuilder,
});