moveColumn method
Moves columns.
from - index of a first column to move,
columns start at index 1 (column A)
count - optional (defaults to 1), the number of columns to move
to - new index of a last column moved
must be in a range from from to from + count
Returns Future true in case of success.
Throws GSheetsException.
Implementation
Future<bool> moveColumn({
required int from,
required int to,
int count = 1,
}) {
return _moveDimension(dimenColumns, from, to, count);
}