operator + method
Implementation
CursorLocation operator +(CursorLocation? other) => CursorLocation(
rowNum: rowNum + (other?.rowNum ?? 0),
colNum: colNum + (other?.colNum ?? 0));
CursorLocation operator +(CursorLocation? other) => CursorLocation(
rowNum: rowNum + (other?.rowNum ?? 0),
colNum: colNum + (other?.colNum ?? 0));