MultiLevelLabelStyle constructor

const MultiLevelLabelStyle({
  1. TextStyle? textStyle,
  2. double borderWidth = 0,
  3. Color? borderColor,
  4. MultiLevelBorderType borderType = MultiLevelBorderType.rectangle,
})

Creating an argument constructor of MultiLevelLabelStyle class.

Implementation

const MultiLevelLabelStyle({
  this.textStyle,
  this.borderWidth = 0,
  this.borderColor,
  this.borderType = MultiLevelBorderType.rectangle,
});