replaceOne method

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

Replaces a single row with an update statement.

See also UpdateStatement.replace.

Implementation

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