vk_library 1.0.3
vk_library: ^1.0.3 copied to clipboard
This package is designed to work with VK api
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: 1));
}