Divider constructor

const Divider({
  1. double? height,
  2. double? thickness,
  3. String? color,
  4. double indent = 0,
  5. double endIndent = 0,
})

Divider API.

Implementation

const Divider({
  this.height,
  this.thickness,
  this.color,
  this.indent = 0,
  this.endIndent = 0,
});