isOpen method

Future<bool> isOpen()

Checks whether there is an open session that connects SDK with the backend.

Implementation

Future<bool> isOpen() async {
  final result = await _methodChannel.invokeMethod<bool>('isOpen');
  return Future.value(result);
}