stringify static method

String stringify(
  1. Point val
)

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

go.Point.stringify(new go.Point(1, 2)) produces the string "1 2".

Implementation

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