copyWith method
Implementation
OrmMigrationRecordInsertDto copyWith({
Object? id = _copyWithSentinel,
Object? checksum = _copyWithSentinel,
Object? appliedAt = _copyWithSentinel,
Object? batch = _copyWithSentinel,
}) {
return OrmMigrationRecordInsertDto(
id: identical(id, _copyWithSentinel) ? this.id : id as String?,
checksum: identical(checksum, _copyWithSentinel)
? this.checksum
: checksum as String?,
appliedAt: identical(appliedAt, _copyWithSentinel)
? this.appliedAt
: appliedAt as DateTime?,
batch: identical(batch, _copyWithSentinel) ? this.batch : batch as int?,
);
}