TriangleIndicator constructor

const TriangleIndicator({
  1. Key? key,
  2. Color? color,
  3. double width = 36.0,
  4. double height = 36.0,
  5. double elevation = 2,
})

Implementation

const TriangleIndicator({
  Key? key,
  this.color,
  this.width = 36.0,
  this.height = 36.0,
  this.elevation = 2,
}) : super(key: key);