copyWith method

KalamCachedRowsCompanion copyWith({
  1. Value<String>? accountKey,
  2. Value<String>? tableId,
  3. Value<String>? rowKey,
  4. Value<String>? valuesJson,
  5. Value<DateTime>? updatedAt,
  6. Value<int>? rowid,
})

Implementation

KalamCachedRowsCompanion copyWith({
  Value<String>? accountKey,
  Value<String>? tableId,
  Value<String>? rowKey,
  Value<String>? valuesJson,
  Value<DateTime>? updatedAt,
  Value<int>? rowid,
}) {
  return KalamCachedRowsCompanion(
    accountKey: accountKey ?? this.accountKey,
    tableId: tableId ?? this.tableId,
    rowKey: rowKey ?? this.rowKey,
    valuesJson: valuesJson ?? this.valuesJson,
    updatedAt: updatedAt ?? this.updatedAt,
    rowid: rowid ?? this.rowid,
  );
}