setLogConfig method

Future<void> setLogConfig(
  1. LogConfig? logConfig
)
inherited

Used to set the logging behavior.

Parameters:

  • logType is used to define the logging level. LogType.
  • detailedLog is used to define if detailed log will be shown (Disable by default to avoid spam).

Important:

  • If logType is null, will be set to WARN.
  • If detailedLog is null, will be set to false.

Implementation

Future<void> setLogConfig(LogConfig? logConfig) {
  throw UnimplementedError('setLogConfig() has not been implemented.');
}