QuadAnnotation constructor

QuadAnnotation({
  1. required Point<double> topLeft,
  2. required Point<double> topRight,
  3. required Point<double> bottomLeft,
  4. required Point<double> bottomRight,
})

构造函数

Implementation

QuadAnnotation({
  required this.topLeft,
  required this.topRight,
  required this.bottomLeft,
  required this.bottomRight,
});