operator + method

CursorLocation operator +(
  1. CursorLocation? other
)

Implementation

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