An open API service indexing awesome lists of open source software.

https://github.com/tiagohm/brotli

Pure Dart Brotli decoder
https://github.com/tiagohm/brotli

brotli brotli-decoder dart flutter

Last synced: 6 months ago
JSON representation

Pure Dart Brotli decoder

Awesome Lists containing this project

README

          

# Brotli

![Pub Version](https://img.shields.io/pub/v/brotli?style=flat-square)
[![CI](https://github.com/tiagohm/brotli/actions/workflows/ci.yml/badge.svg)](https://github.com/tiagohm/brotli/actions/workflows/ci.yml)

Pure Dart Brotli decoder.

## Installation

In `pubspec.yaml` add the following dependency:

```yaml
dependencies:
brotli: ^0.6.0
```

## Example

```dart
import 'dart:io';

import 'package:brotli/brotli.dart';

void main() {
final output = brotli.decodeToString(File("./brotli.br").readAsBytesSync());
print(output);
}
```