stringify static method

String stringify(
  1. Rect val
)

This static function can be used to write out a Rect as a string that can be read by Rect.parse.

go.Rect.stringify(new go.Rect(1, 2, 3, 4)) produces the string "1 2 3 4".

Implementation

static _i2.String stringify(_i3.Rect val) => _i4.callMethod(
      _declaredRect,
      'stringify',
      [val],
    );