RectangleFeature constructor

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

Implementation

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