airtable 0.0.2
airtable: ^0.0.2 copied to clipboard
Provides an easier way of communicating with Airtable and filtering the data that is being extracted from the Airtable project.
Airtable #
Simple Flutter API to query from Airtable and filter the results!
Initilize Airtable
Airtable.initialize(your_api_key, your_project_base);
copied to clipboard
Query the elements by Table
Airtable airtable = Airtable();
var elements = airtable.queryByTable();
copied to clipboard