getRecord method

String getRecord(
  1. TerminalCommand command
)

Implementation

String getRecord(TerminalCommand command) {
  final charCodes = recorded.sublist(0, command.end);
  return String.fromCharCodes(charCodes);
}