Tangent constructor Null safety
Creates a Tangent with the given values.
The arguments must not be null.
Implementation
const Tangent(this.position, this.vector)
: assert(position != null),
assert(vector != null);
Creates a Tangent with the given values.
The arguments must not be null.
const Tangent(this.position, this.vector)
: assert(position != null),
assert(vector != null);