vk_library 1.0.2
vk_library: ^1.0.2 copied to clipboard
Library for working with VK api. In the future, there will be support for LongPoll, Uploading documents, and all sorts of different utilities.
vk_library
Library for the Dart programming language to interact with the VK api
Example #
import "package:vk_library/vk_library.dart";
void main() async {
final vk = VK(
token: "token",
language: Language.RU,
version: "5.131",
);
await vk.api.messages.send(chatId: 1, message: "Hello");
final userInfo = await vk.api.call("users.get", {"user_id": 1});
print(userInfo);
}