ColumnOperation.rename constructor

ColumnOperation.rename(
  1. String from, {
  2. required String to,
})

Moves the value under from to the key to. Rows without from are left unchanged.

Implementation

factory ColumnOperation.rename(String from, {required String to}) = RenameColumn;