historyId function

Future<void> historyId(
  1. String value
)

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