dart_airtable 1.1.0 copy "dart_airtable: ^1.1.0" to clipboard
dart_airtable: ^1.1.0 copied to clipboard

Dart library for working and interacting with the Airtable API

Dart Airtable #

A library for using the Airtable API in Dart & Flutter applications

Usage #

A simple usage example:

import 'package:dart_airtable/dart_airtable.dart';

void main() async {
  final apiKey = 'my-airtable-api-key'
  final projectBase = 'my-airtable-project-base';
  final recordName = 'Tasks';

  var airtable = Airtable(apiKey: apiKey, projectBase: projectBase);
  var records = await airtable.getAllRecords(recordName);

  print(records);
}

Running the example #

  1. Create a .env file
cp .env.example .env
  1. Fill in your API Key, Project base key and Record Name in the .env file

  2. Run the dart file

dart example/dart_airtable_example.dart

Features and bugs #

Please file feature requests and bugs at the issue tracker.

10
likes
140
points
113
downloads

Publisher

unverified uploader

Weekly Downloads

Dart library for working and interacting with the Airtable API

Repository
View/report issues

Documentation

API reference

License

BSD-2-Clause (license)

Dependencies

http, meta

More

Packages that depend on dart_airtable