Rectangle method
Implementation
int Rectangle(
ffi.Pointer<HDC__> hdc,
int left,
int top,
int right,
int bottom,
) {
return (_Rectangle ??=
_dylib.lookupFunction<_c_Rectangle, _dart_Rectangle>('Rectangle'))(
hdc,
left,
top,
right,
bottom,
);
}