IntRect constructor

IntRect({
  1. required int left,
  2. required int top,
  3. required int width,
  4. required int height,
})

Implementation

IntRect({
  required this.left,
  required this.top,
  required this.width,
  required this.height,
});