WDivider constructor

const WDivider({
  1. Key? key,
  2. String? className,
  3. double? height,
  4. double? thickness,
  5. double? indent,
  6. double? endIndent,
  7. Color? color,
})

Implementation

const WDivider({
  super.key,
  this.className,
  this.height,
  this.thickness,
  this.indent,
  this.endIndent,
  this.color,
});