Complex.fromFloat64x2 constructor

Complex.fromFloat64x2(
  1. Float64x2 float
)

Implementation

factory Complex.fromFloat64x2(Float64x2 float) {
  return Complex(float.x, float.y);
}