form_concierge_client 0.3.0
form_concierge_client: ^0.3.0 copied to clipboard
REST client for Form Concierge Workers API.
example/form_concierge_client_example.dart
import 'package:form_concierge_client/form_concierge_client.dart';
Future<void> main() async {
final client = Client('https://your-worker.example.com');
try {
final project = await client.survey.getProjectBySlug('demo-project');
print(project?.project.name);
} finally {
client.close();
}
}