operator + method Null safety
- AlignmentDirectional other
Returns the sum of two AlignmentDirectionals.
Implementation
AlignmentDirectional operator +(AlignmentDirectional other) {
return AlignmentDirectional(start + other.start, y + other.y);
}
Returns the sum of two AlignmentDirectionals.
AlignmentDirectional operator +(AlignmentDirectional other) {
return AlignmentDirectional(start + other.start, y + other.y);
}