parse static method

Rect parse(
  1. String str
)

This static function can be used to read in a Rect from a string that was produced by Rect.stringify.

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

Implementation

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