plunk 2.0.2
plunk: ^2.0.2 copied to clipboard
Dart and Flutter REST API client library for the Plunk email platform for SaaS. Visit useplunk.com to create an account.
import 'package:plunk/plunk.dart';
void main() async {
final plunk = Plunk(apiKey: 'YOUR_API_KEY');
ContactResponse contact = await plunk.getContact(id: 'test');
print(contact.id); // test
}