isSessionReplayActive method
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;
}