stringify static method
This static function can be used to write out a Spot as a string that can be read by Spot.parse.
go.Spot.stringify(new go.Spot(0, 1, 2, 3))
produces the string "0 1 2 3".
Implementation
static _i2.String stringify(_i3.Spot val) => _i4.callMethod(
_declaredSpot,
'stringify',
[val],
);