text property

String text

The method allows you to get full text of logs or history

Implementation

String get text {
  final sb = StringBuffer();
  for (final data in this) {
    sb.write('${data.generateTextMessage()}\n');
  }
  return sb.toString();
}