rectFromLayoutRect function
Implementation
Rect rectFromLayoutRect(LayoutRect rect) {
return Rect.fromLTRB(
rect.left,
rect.top,
rect.right,
rect.bottom,
);
}
Rect rectFromLayoutRect(LayoutRect rect) {
return Rect.fromLTRB(
rect.left,
rect.top,
rect.right,
rect.bottom,
);
}