close method

Future<void> close()

Closes the current session.

Implementation

Future<void> close() async {
  await _methodChannel.invokeMethod('close');
  return Future.value();
}