close static method

Future<void> close()

Close the client SDK

Implementation

static Future<void> close() async {
  final hub = _hub;
  _hub = NoOpHub();
  await hub.close();
}