copyWith method

SyncPoint copyWith({
  1. String? scopeName,
  2. String? scopeKeys,
  3. String? lastServerTs,
})

Implementation

SyncPoint copyWith({
  String? scopeName,
  String? scopeKeys,
  String? lastServerTs,
}) => SyncPoint(
  scopeName: scopeName ?? this.scopeName,
  scopeKeys: scopeKeys ?? this.scopeKeys,
  lastServerTs: lastServerTs ?? this.lastServerTs,
);