log function

dynamic log(
  1. String text, {
  2. bool record = true,
  3. bool newLine = false,
})

Implementation

log(String text, {bool record = true, bool newLine = false}) {
  LogUtil.instance.addLog(text, record: record, newLine: newLine);
}