RoundedDivider constructor

const RoundedDivider({
  1. Key? key,
  2. double? height,
  3. double? thickness,
  4. double? indent,
  5. double? endIndent,
  6. Color? color,
  7. double radius = 8,
})

Implementation

const RoundedDivider({
  super.key,
  this.height,
  this.thickness,
  this.indent,
  this.endIndent,
  this.color,
  this.radius = 8,
});