Point.withZ constructor

Point.withZ({
  1. required double x,
  2. required double y,
  3. double? z,
})

Implementation

Point.withZ({required this.x, required this.y, this.z});