Divider constructor

const Divider({
  1. double? thickness,
  2. double? indent,
  3. double? endIndent,
  4. Color? color,
  5. bool vertical = false,
  6. Key? key,
})

Implementation

const Divider({
  this.thickness,
  this.indent,
  this.endIndent,
  this.color,
  this.vertical = false,
  super.key,
});