Divider constructor
Divider({
- double? height,
- double? thickness,
- double? indent,
- double? endIndent,
- PdfColor? color,
- BorderStyle? borderStyle,
Implementation
Divider({
this.height,
this.thickness,
this.indent,
this.endIndent,
this.color,
this.borderStyle,
}) : assert(height == null || height >= 0.0),
assert(thickness == null || thickness >= 0.0),
assert(indent == null || indent >= 0.0),
assert(endIndent == null || endIndent >= 0.0);