MyVerticalDivider constructor

const MyVerticalDivider({
  1. double width = 16.0,
  2. Color color = Colors.transparent,
  3. double? thickness,
  4. double? indent,
  5. double? endIndent,
  6. Key? key,
})

Implementation

const MyVerticalDivider({
  this.width = 16.0, // sensible default
  this.color = Colors.transparent,
  this.thickness,
  this.indent,
  this.endIndent,
  super.key,
});