VerticalDivider constructor

const VerticalDivider({
  1. Key? key,
  2. Color? color,
  3. double? width,
  4. double? thickness,
  5. double? indent,
  6. double? endIndent,
  7. Widget? child,
  8. EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(vertical: 8),
})

Implementation

const VerticalDivider({
  super.key,
  this.color,
  this.width,
  this.thickness,
  this.indent,
  this.endIndent,
  this.child,
  this.padding = const EdgeInsets.symmetric(vertical: 8),
});