setInstabugLogsEnabled static method

Future<void> setInstabugLogsEnabled(
  1. bool isEnabled
)

Enables or disables Instabug logs for Session Replay. By default, Instabug logs are enabled.

Example:

await SessionReplay.setInstabugLogsEnabled(true);

Implementation

static Future<void> setInstabugLogsEnabled(bool isEnabled) async {
  return _host.setInstabugLogsEnabled(isEnabled);
}