TriangleShape constructor

TriangleShape({
  1. double percentBottom = 0.5,
  2. double percentLeft = 0,
  3. double percentRight = 0,
})

Implementation

TriangleShape({
  this.percentBottom = 0.5,
  this.percentLeft = 0,
  this.percentRight = 0,
});