vkdart 1.0.4
vkdart: ^1.0.4 copied to clipboard
This is a library that has many possibilities for interacting with the VK API and has a number of auxiliary functions
example/vkdart_example.dart
import 'package:vkdart/vkdart.dart';
void main() async {
final vk = VkDart(token: '');
final api = vk.getApi();
await api.users.get({'user_id': 1});
await api.request('users.get', {'user_id': 1});
}