copyWith method

SyncPointsCompanion copyWith({
  1. Value<String>? scopeName,
  2. Value<String>? scopeKeys,
  3. Value<String>? lastServerTs,
  4. Value<int>? rowid,
})

Implementation

SyncPointsCompanion copyWith({
  Value<String>? scopeName,
  Value<String>? scopeKeys,
  Value<String>? lastServerTs,
  Value<int>? rowid,
}) {
  return SyncPointsCompanion(
    scopeName: scopeName ?? this.scopeName,
    scopeKeys: scopeKeys ?? this.scopeKeys,
    lastServerTs: lastServerTs ?? this.lastServerTs,
    rowid: rowid ?? this.rowid,
  );
}