fromNative static method

Rect fromNative(
  1. RectNative native
)

Implementation

static Rect fromNative(RectNative native) {
  return Rect(to_platform.toPlatformPoint(native.min),
      to_platform.toPlatformPoint(native.max));
}