vk_library 1.0.4
vk_library: ^1.0.4 copied to clipboard
VK SDK for Dart with support for all public VK api methods, Bots Longpoll, User Longpoll, etc.
example/vk_library_example.dart
import 'package:vk_library/vk_library.dart';
void main() async {
final vk = VK(options: const VKOptions(token: ''));
print(await vk.api.users.get(userIds: ['durov']));
}