operator + method Null safety
- Matrix2 arg
Returns new matrix after component wise this + arg
Implementation
Matrix2 operator +(Matrix2 arg) => clone()..add(arg);
Returns new matrix after component wise this + arg
Matrix2 operator +(Matrix2 arg) => clone()..add(arg);