NotionDatabasesClient constructor
NotionDatabasesClient({})
Main Notion database client constructor.
Require the token
to authenticate the requests, and the API version
where to make the calls, which is the latests by default (v1).
Implementation
NotionDatabasesClient({
required String token,
String version: latestVersion,
String dateVersion: latestDateVersion,
}) : super(token: token, version: version, dateVersion: dateVersion);