Dart
dart:math
Point
<
T extends num
>
toString method
toString
Dart
dart:math
Point
<
T extends num
>
toString method
Point class
Constructors
Point
Properties
hashCode
magnitude
runtimeType
x
y
Methods
distanceTo
noSuchMethod
squaredDistanceTo
toString
Operators
operator *
operator +
operator -
operator ==
description
toString
method
Null safety
String
toString
(
)
override
Returns a string representation of this object.
Implementation
String toString() => 'Point($x, $y)';