DimensionalityBean constructor

DimensionalityBean(
  1. {String? tagTitle,
  2. TextStyle? tagTitleStyle,
  3. double lineWidth = 0,
  4. Color lineColor = Colors.transparent,
  5. bool isHintLineImaginary = false,
  6. Color fillColor = defaultColor,
  7. required List<DimensionCellModel> tagContents,
  8. double? tagTipWidth = 15,
  9. double? tagTipHeight = 5}
)

Implementation

DimensionalityBean(
    {this.tagTitle,
    this.tagTitleStyle,
    this.lineWidth = 0,
    this.lineColor = Colors.transparent,
    this.isHintLineImaginary = false,
    this.fillColor = defaultColor,
    required this.tagContents,
    this.tagTipWidth = 15,
    this.tagTipHeight = 5});