updateRow method
Future<UserProfileImage>
updateRow(
- Session session,
- UserProfileImage row, {
- ColumnSelections<
UserProfileImageTable> ? columns, - Transaction? transaction,
Updates a single UserProfileImage. The row needs to have its id set.
Optionally, a list of columns can be provided to only update those
columns. Defaults to all columns.
Implementation
Future<UserProfileImage> updateRow(
_i1.Session session,
UserProfileImage row, {
_i1.ColumnSelections<UserProfileImageTable>? columns,
_i1.Transaction? transaction,
}) async {
return session.db.updateRow<UserProfileImage>(
row,
columns: columns?.call(UserProfileImage.t),
transaction: transaction,
);
}