Dart
dart:math
Point
<
T extends num
>
Point const constructor
Point
Point class
Constructors
Point
Properties
hashCode
magnitude
x
y
runtimeType
Methods
distanceTo
squaredDistanceTo
toString
noSuchMethod
Operators
operator *
operator +
operator -
operator ==
Point<
T extends num
> constructor
const
Point<
T extends num
>
(
T
x
,
T
y
)
Implementation
const Point(T x, T y) : this.x = x, this.y = y;