text method

SandLog text(
  1. String? text
)

Implementation

SandLog text(String? text) {
  if (_defaultConfiguration.isLogActivated == false) return this;
  _logsPipeline.add(LogStringModel(text ?? 'null'));
  _resetDelay();
  return this;
}