toNative method

Rect toNative()

Returns a dart Rect instance based on this GRect x,y,width,height

Implementation

Rect toNative() {
  return Rect.fromLTWH(x, y, width, height);
}