Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/huhx/flutter_snowflake

Snowflake in Flutter
https://github.com/huhx/flutter_snowflake

dart flutter snowflake

Last synced: about 2 months ago
JSON representation

Snowflake in Flutter

Awesome Lists containing this project

README

        

Language: [中文简体](README_CN.md) | [English](README.md)

# flutter_snowflake
SnowFlake id generator, inspired by Twitter. For more details, you can read the following doc: Twitter IDs

## 🐱 Usage
### Add dependency
```yaml
dependencies:
flutter_snowflake: ^0.0.4
```

### Generate id
```dart
final int id = Snowflake(2, 3).getId();
```