TdDivider constructor

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

Implementation

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