export method

String export()

Export logs as string

Implementation

String export() {
  return _logs.map((log) => log.toString()).join('\n');
}