ThreeDotsLeftright constructor

const ThreeDotsLeftright({
  1. Key? key,
  2. double radius = 15,
  3. double iconSize = 15,
  4. double bgHeight = 15,
  5. Color dotsColor = Colors.white,
  6. Color? iconColor,
  7. Color bgColor = Colors.transparent,
  8. List<BoxShadow>? dotsShadow,
  9. IconData? icon,
})

Implementation

const ThreeDotsLeftright({
  super.key,
  this.radius = 15,
  this.iconSize = 15,
  this.bgHeight = 15,
  this.dotsColor = Colors.white,
  this.iconColor,
  this.bgColor = Colors.transparent,
  this.dotsShadow,
  this.icon,
});