replace method

Future<void> replace(
  1. Insertable<Row> row
)

Replaces a single row with an update statement.

See also UpdateStatement.replace.

Implementation

Future<void> replace(Insertable<Row> row) {
  return update().replace(row);
}