Tester constructor

Tester(
  1. WidgetsBinding _binding,
  2. Registry _registry, {
  3. Emitter? emitter,
})

The tester that is used to execute the actions in a flow file.

Implementation

Tester(this._binding, this._registry, {Emitter? emitter})
    : _emitter = emitter ?? Emitter(),
      _semanticsHandle = _binding.ensureSemantics();