jotform 1.0.8 copy "jotform: ^1.0.8" to clipboard
jotform: ^1.0.8 copied to clipboard

Jotform API

Usage #

import 'package:jotform/jotform.dart';

Future<void> main() async {
  JotformAPI japi = JotformAPI(apiKey: Keys().jotformAPIKey);

  await for (JotformForm form in japi.getForms(
    offset: 2, limit: 20,
    orderBy: JotformOrderBy.updated_at,
  )) {
    await for (JotformSubmission submission in japi.getSubmissions(form.id,
        limit: 10, offset: 0, orderBy: JotformOrderBy.created_at)) {}
  }
}

NOTE #

This is an unofficial implementation of the JotformAPI as a wrapper for dart. ArcaneArts does not represent Jotform, if you represent Jotform please contact magic@arcane.art to claim this package name.

0
likes
120
points
31
downloads

Publisher

verified publisherarcane.art

Weekly Downloads

Jotform API

Repository (GitHub)

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

dart_mappable, http, toxic

More

Packages that depend on jotform