getSessionId method

  1. @override
Future<int?> getSessionId()
override

Implementation

@override
Future<int?> getSessionId() {
  try {
    return channel.invokeMethod<int>('Analytics#getSessionId');
  } catch (e, s) {
    convertPlatformException(e, s);
  }
}