set static method

void set(
  1. String key,
  2. dynamic value
)

Store a value in test state.

Implementation

static void set(String key, dynamic value) {
  _testState[key] = value;
}