vkdart 1.0.3
vkdart: ^1.0.3 copied to clipboard
A library for interacting with the VK API, has all the latest version methods, support for Longpoll API, Callback API and a number of other auxiliary functions for convenient interaction
example/vkdart_example.dart
import 'package:vkdart/vkdart.dart';
void main() async {
var vk = VkDart(token: '');
var api = vk.getApi();
var response = await api.users.get({'user_id': 1});
/// Second way
var response2 = await api.request('users.get', {'user_id': 1});
print(response);
print(response2);
}