Reads content body as bytes and returns a future of Uint8List.
@override Future<Uint8List> get bytes async { try { return await file.readAsBytes(); } on Exception catch (e) { throw ClientException.readingBytesFailed(e); } }