vklib 0.2.1
vklib: ^0.2.1 copied to clipboard
A simple VK library.
VK SDK for Dart. #
VK SDK for Dart allows you to use the VK API easily.
Install #
Add to your pubspec.yaml
dependencies:
VkLib:
git: git//:github.com/Waitrum/VkLib.git
Features #
Художественный фильм "Спиздили"
- LongPoll
- ✅ Bots
- ❌ User
Usage #
import 'package:vklib/vklib.dart';
void main() async {
var vk = VkLib(token: '%token');
await vk.api.messages.send(
user_id: 1,
message: 'Hello',
);
}