checkpoint method
Records a checkpoint within the session
Implementation
@override
void checkpoint(String name) {
if (_completed) return;
final checkpointDuration = DateTime.now().difference(startTime);
metadata['checkpoint_$name'] = checkpointDuration.inMicroseconds;
}