ComArrow constructor

const ComArrow({
  1. Key? key,
  2. double? size,
  3. Color? color,
  4. ArrowDirection direction = ArrowDirection.right,
})

Implementation

const ComArrow({
  super.key,
  this.size,
  this.color,
  this.direction = ArrowDirection.right,
});