withLogEnabled method

Builder withLogEnabled([
  1. bool enableLog = true
])

Generates debug logs to console.

Implementation

Builder withLogEnabled([bool enableLog = true]) {
  builderAgent?.withLogEnabled(enableLog);
  return this;
}