Point.fromTuple constructor

Point.fromTuple(
  1. (double, double) tuple
)

Implementation

factory Point.fromTuple((double, double) tuple) {
  return Point.fromXY(tuple.$1, tuple.$2);
}