parse static method
This static function can be used to read in a Point from a string that was produced by Point.stringify.
go.Point.parse("1 2")
produces the Point new go.Point(1, 2)
.
Implementation
static _i3.Point parse(_i2.String str) => _i4.callMethod(
_declaredPoint,
'parse',
[str],
);