logTrace method

void logTrace (
  1. String info,
  2. {Object error,
  3. bool exception: false}
)

Implementation

void logTrace(String info, {Object error, bool exception = false}) {
  developer.log(info, name: getLoggingNamespace(), error: error);
  if (exception) {
    throw (info);
  }
}