copyWithCompanion method
- AccountsCompanion data
Implementation
AccountRow copyWithCompanion(AccountsCompanion data) {
return AccountRow(
id: data.id.present ? data.id.value : this.id,
userId: data.userId.present ? data.userId.value : this.userId,
);
}