export static method

String export()

Export all logs as a string.

Implementation

static String export() {
  final buffer = StringBuffer();
  for (final log in _logs) {
    buffer.writeln(log.toString());
  }
  return buffer.toString();
}