SectionBean constructor

SectionBean({
  1. String title = '',
  2. TextStyle? titleStyle,
  3. double startRatio = 0,
  4. double widthRatio = 0,
  5. Color? fillColor,
  6. Color? borderColor,
  7. double? borderWidth = 1,
  8. bool isBorderSolid = true,
})

Implementation

SectionBean(
    {this.title = '',
    this.titleStyle,
    this.startRatio = 0,
    this.widthRatio = 0,
    this.fillColor,
    this.borderColor,
    this.borderWidth = 1,
    this.isBorderSolid = true});