DoublePointedArrow constructor

const DoublePointedArrow({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required Color color,
  5. required String text,
})

Implementation

const DoublePointedArrow({
  super.key,
  required this.width,
  required this.height,
  required this.color,
  required this.text,
});