RoundedVerticalDivider constructor

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

Implementation

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