Promise which resolves to the bytes with response body.
Future<List<int>> get bytes => content!.then( (content) => content is List<int> ? content : utf8.encode(content as String), );