showLogs property
set
showLogs
(bool newValue)
This is responsible for showing the logs about what is happening under the hood on this client library, by default it's set to true, so you can track what is when you call a method. But, if you want to disable it, you can set it to false. Example:
Replicate.showLogs = false
Implementation
static set showLogs(bool newValue) {
ReplicateLogger.isActive = newValue;
}