VerticalDivider constructor

VerticalDivider({
  1. double? width,
  2. double? thickness,
  3. double? indent,
  4. double? endIndent,
  5. PdfColor? color,
  6. BorderStyle? borderStyle,
})

Implementation

VerticalDivider({
  this.width,
  this.thickness,
  this.indent,
  this.endIndent,
  this.color,
  this.borderStyle,
})  : assert(width == null || width >= 0.0),
      assert(thickness == null || thickness >= 0.0),
      assert(indent == null || indent >= 0.0),
      assert(endIndent == null || endIndent >= 0.0);