stringify static method

String stringify(
  1. Spot val
)

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],
    );