vklib 0.2.2
vklib: ^0.2.2 copied to clipboard
Simple asynchronous framework for VK API.
example/vklib_example.dart
import 'package:vklib/vklib.dart';
void main() async {
var vk = VkLib(token: '%token');
var lp = BotsLongPoll(vk.api);
lp.on(BotsEventsEnum.MessageNew, (event) async {
print('${event.object['message']['from_id']}:'
' ${event.object['message']['text']}');
});
lp.start();
}