vklib 0.3.0
vklib: ^0.3.0 copied to clipboard
Simple framework for dart allows you to use the VK API easily.
import 'package:vklib/vklib.dart';
// Тестовый файл лол)
void main() async {
var vk = VkLib(token: '%user_token');
final lp = UserLongPoll(vk.api);
print('Start polling');
lp.on(UserLongPollEventsEnum.messageNew, (event) async {
print('${event.object[6]['from']}: ${event.object[5]}');
});
lp.start();
}
copied to clipboard