Vector3.all constructor

Vector3.all(
  1. double value
)

Splat value into all lanes of the vector.

Implementation

factory Vector3.all(double value) => Vector3.zero()..splat(value);