exportRect function

String exportRect(
  1. Rect rect
)

Implementation

String exportRect(Rect rect) {
  return "${rect.left},${rect.top},${rect.right},${rect.bottom}";
}