sessionGetScreenCount static method

Future<int?> sessionGetScreenCount()

Returns the number of screens which have been displayed by the app

Implementation

static Future<int?> sessionGetScreenCount() async {
  return await _dartToNativeMethodChannel
      .invokeMethod('sessionGetScreenCount', {});
}