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);

Libraries

notion_sdk