teardown method

Future teardown()

Closes down the Store so it will no longer be operational. Only use this if you want to destroy the Store while your app is running. Do not use this method as a way to stop listening to onChange state changes. For that purpose, view the onChange documentation.

Implementation

Future teardown() async {
  return _changeController.close();
}