Doodstream Client
Doodstream Client this open source project is free
Demo
đī¸ Docs
- Documentation
- Youtube
- Telegram Support Group
- Contact Developer (check social media or readme profile github)
đī¸ Features
x
đąī¸ Cross Platform support (Device, Edge Severless functions)x
đī¸ Standarization Style Codex
â¨ī¸ Cli (Terminal for help you use this library or create project)x
đĨī¸ Api (If you developer bot / userbot you can use this library without interact cli just add library and use đī¸)x
đ§Šī¸ Customizable Extension (if you want add extension so you can more speed up on development)x
â¨ī¸ Pretty Information (user friendly for newbie)
âī¸ Fun Fact
This library 100% use on every my create project (App, Server, Bot, Userbot)
đī¸ Proggres
- 2024-06-03 Starting Release Stable With core Features
đĨī¸ Install Library
- Dart
dart pub add doodstream
- from github
dart pub add doodstream
đī¸ Quick Start
Example Quickstart script minimal for insight you or make you use this library because very simple
import 'package:doodstream/doodstream.dart';
import 'package:general_lib/extension/dynamic.dart';
void main(List<String> args) async {
String api_key = "";
Doodstream doodstreamClient = Doodstream(api_key: api_key);
Map res = await doodstreamClient.getMe();
res.printPretty();
}