Skip to content

Commit

Permalink
docs: remove urls from session replay docs
Browse files Browse the repository at this point in the history
  • Loading branch information
abdelhamid-f-nasser authored and a7medev committed Sep 27, 2023
1 parent a586759 commit 1f088fb
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions lib/src/modules/session_replay.dart
Expand Up @@ -27,8 +27,6 @@ class SessionReplay {
/// SessionReplay.setEnabled(true); // Enable Session Replay
/// SessionReplay.setEnabled(false); // Disable Session Replay
/// ```
///
/// For more information, see [Enabling/Disabling Session Replay](https://docs.instabug.com/docs/android-session-replay#enablingdisabling-session-replay).
static Future<void> setEnabled(bool isEnabled) async {
return _host.setEnabled(isEnabled);
}
Expand All @@ -44,8 +42,6 @@ class SessionReplay {
/// await SessionReplay.setNetworkLogsEnabled(true); // Enable network logs
/// await SessionReplay.setNetworkLogsEnabled(false); // Disable network logs
/// ```
///
/// For more information, see [Network Logs](https://docs.instabug.com/docs/android-session-replay#network).
static Future<void> setNetworkLogsEnabled(bool isEnabled) async {
return _host.setNetworkLogsEnabled(isEnabled);
}
Expand All @@ -61,8 +57,6 @@ class SessionReplay {
/// await SessionReplay.setInstabugLogsEnabled(true); // Enable Instabug logs
/// await SessionReplay.setInstabugLogsEnabled(false); // Disable Instabug logs
/// ```
///
/// For more information, see [Instabug Logs](https://docs.instabug.com/docs/android-session-replay#instabug-logs).
static Future<void> setInstabugLogsEnabled(bool isEnabled) async {
return _host.setInstabugLogsEnabled(isEnabled);
}
Expand All @@ -78,8 +72,6 @@ class SessionReplay {
/// await SessionReplay.setUserStepsEnabled(true); // Enable user steps
/// await SessionReplay.setUserStepsEnabled(false); // Disable user steps
/// ```
///
/// For more information, see [User Steps](https://docs.instabug.com/docs/android-session-replay#user-steps).
static Future<void> setUserStepsEnabled(bool isEnabled) async {
return _host.setUserStepsEnabled(isEnabled);
}
Expand Down

0 comments on commit 1f088fb

Please sign in to comment.