readAsBytes method

Future<Uint8List> readAsBytes()
inherited

Synchronously read the entire file contents as a list of bytes.

Throws Exception if the operation fails.

Implementation

Future<Uint8List> readAsBytes() {
  throw UnimplementedError('readAsBytes() has not been implemented.');
}