brotliDecode function

List<int> brotliDecode(
  1. List<int> data
)

Parses the Brotli-encoded data and returns the decoded bytes.

Shorthand for brotli.decode. Useful if a local variable shadows the global brotli constant.

Implementation

List<int> brotliDecode(List<int> data) => brotli.decode(data);