copyWith method
Implementation
StoredCheckpoint copyWith({
String? accountKey,
String? subscriptionId,
String? seq,
DateTime? updatedAt,
}) => StoredCheckpoint(
accountKey: accountKey ?? this.accountKey,
subscriptionId: subscriptionId ?? this.subscriptionId,
seq: seq ?? this.seq,
updatedAt: updatedAt ?? this.updatedAt,
);