copyWithCompanion method
Implementation
StoredCachedRow copyWithCompanion(KalamCachedRowsCompanion data) {
return StoredCachedRow(
accountKey: data.accountKey.present
? data.accountKey.value
: this.accountKey,
tableId: data.tableId.present ? data.tableId.value : this.tableId,
rowKey: data.rowKey.present ? data.rowKey.value : this.rowKey,
valuesJson: data.valuesJson.present
? data.valuesJson.value
: this.valuesJson,
updatedAt: data.updatedAt.present ? data.updatedAt.value : this.updatedAt,
);
}