Ellipse.fromLTWH constructor

Ellipse.fromLTWH({
  1. required Offset topLeft,
  2. required double width,
  3. required double height,
})

Implementation

Ellipse.fromLTWH({
  required Offset topLeft,
  required double width,
  required double height,
}) : _rect = Rect.fromLTWH(
        topLeft.dx,
        topLeft.dy,
        width,
        height,
      );