setLoggingEnabled method

InTrackConfig setLoggingEnabled(
  1. bool enabled
)

Set to true of you want to enable intrack internal debugging logs those logs will be printed to the console

Implementation

InTrackConfig setLoggingEnabled(bool enabled) {
  _loggingEnabled = enabled;
  return this;
}