Last updated:
0 purchases
lindle
Lindle Flutter #
Lindle is your ultimate solution for managing and organizing your web links with ease. This versatile Chrome extension empowers you to save, categorize, and access your online resources like never before.
API Documentation #
The API Documentation for Lindle.
Installation #
flutter pub add lindle
copied to clipboard
Getting Started #
Get your Lindle API key from Chrome Extension.
const apiKey = "Your key here...";
const lindle = Lindle(apiKey:apiKey);
copied to clipboard
Get Links #
lindle.getLinks().then((links) => {
console.log(links);
});
copied to clipboard
Get Folders #
lindle.getFolders().then((folders) => {
console.log(folders);
});
copied to clipboard
Get Synced Bookmarks #
lindle.getSyncedBookmarks().then((data) => {
console.log(data.folders);
console.log(data.links);
});
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.