dispose method

  1. @override
void dispose()
inherited

Dispose of this executor.

Is not stopped, stop will be called first.

Once disposed, the executor cannot be used anymore and nothing will happen if any of the life cycle methods are called.

Implementation

@override
void dispose() {
  info('Disposing $this');
  // stop();
  _stateMachine.dispose();
  // _measurementsController.close();
}