Arrow constructor

const Arrow({
  1. Color? color,
  2. Size size = const Size(24, 24),
  3. Key? key,
})

Constructs an Arrow widget.

color is the color of the arrow icon.

size is the size of the arrow.

Implementation

const Arrow({
  this.color,
  this.size = const Size(24, 24),
  super.key,
});