ArrowShapeWidget constructor

const ArrowShapeWidget({
  1. Key? key,
  2. double width = 100,
  3. double height = 50,
  4. Color color = Colors.blue,
  5. String text = '',
  6. TextStyle? textStyle,
  7. EdgeInsetsGeometry padding = EdgeInsets.zero,
  8. Alignment alignment = Alignment.center,
})

Implementation

const ArrowShapeWidget({
  Key? key,
  this.width = 100,
  this.height = 50,
  this.color = Colors.blue,
  this.text = '',
  this.textStyle,
  this.padding = EdgeInsets.zero,
  this.alignment = Alignment.center,
}) : super(key: key);