copyWith method

StoredCheckpoint copyWith({
  1. String? accountKey,
  2. String? subscriptionId,
  3. String? seq,
  4. DateTime? updatedAt,
})

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,
);