Area constructor

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

Create a new area

Implementation

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