vertices property

List<Point<double>> get vertices

转换为顶点列表 返回顺序:左上, 右上, 右下, 左下

Implementation

List<Point<double>> get vertices => [
  topLeft,
  topRight,
  bottomRight,
  bottomLeft,
];