DividerWidget constructor

const DividerWidget({
  1. String? label,
  2. Color? color,
  3. double thickness = 1,
  4. double? indent,
  5. double? endIndent,
  6. Key? key,
})

Creates a DividerWidget.

Implementation

const DividerWidget({
  this.label,
  this.color,
  this.thickness = 1,
  this.indent,
  this.endIndent,
  super.key,
});