ChipStyle constructor

const ChipStyle({
  1. double? size,
  2. Color? background = Colors.blue,
  3. Color? color,
  4. bool? isHexagon,
  5. bool? drawHexagon,
  6. bool? convexBridge,
  7. NotchSmoothness? notchSmoothness,
})

Implementation

const ChipStyle({
  this.size,
  this.background = Colors.blue,
  this.color,
  this.isHexagon,
  this.drawHexagon,
  this.convexBridge,
  this.notchSmoothness,
});