load method

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

Replay file with output. Maps to: .load <path>

Executes each line as a command, showing output.

Implementation

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