replay method

  1. @override
Future<int> replay(
  1. String path
)
override

Replay file silently. Maps to: .replay <path>

Executes each line as a command, suppressing output.

Implementation

@override
Future<int> replay(String path) async {
  return _replayFile(path, silent: true);
}