historyId function
Sets the history id of the current test.
Implementation
Future<void> historyId(String value) {
return _currentTestRuntime.send(
RuntimeMessage(
type: 'metadata',
data: <String, Object?>{'historyId': value},
),
);
}