DividerWidget constructor

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

Implementation

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