Quadrilateral constructor

Quadrilateral(
  1. Point _topLeft,
  2. Point _topRight,
  3. Point _bottomRight,
  4. Point _bottomLeft,
)

Implementation

Quadrilateral(this._topLeft, this._topRight, this._bottomRight, this._bottomLeft);