notion_sdk 0.1.1
notion_sdk: ^0.1.1 copied to clipboard
A wrapper for Notion's SDK made for the LiteN app.
Notion SDK for Dart
A dart implemention for the Notion SDK
This library is a WIP dart implementation of the JavaScript SDK
This library is in beta, please report on GitHub Issues any issues you come across
Usage #
Import and initialize a client using an integration token or an OAuth access token.
import 'package:http/http.dart' as http;
final apiKey = '';
var hClient = http.Client();
var client = NotionClient(httpClient: hClient, apiKey: apiKey);