seek method

  1. @override
Future<int> seek(
  1. SeekWhence whence,
  2. int offset
)

Seek to a position in the device Returns the new position

Implementation

@override
Future<int> seek(SeekWhence whence, int offset) async {
  throw UnimplementedError("ConsoleOutputDevice does not support seek");
}