Vector4.copy constructor

Vector4.copy(
  1. Vector4 other
)

Copy of other.

Implementation

factory Vector4.copy(Vector4 other) => Vector4.zero()..setFrom(other);