close method

Future<void> close()

Stops the node and closes its store.

Implementation

Future<void> close() async {
  await stop();
  await store.close();
}