isSessionReplayActive method

  1. @override
Future<bool> isSessionReplayActive()

Returns whether session replay is currently active.

Implementation

@override
Future<bool> isSessionReplayActive() async {
  final result =
      await handleWebMethodCall(const MethodCall('isSessionReplayActive'));
  return result as bool? ?? false;
}