wishfly_api_client 0.2.0
wishfly_api_client: ^0.2.0 copied to clipboard
Flutter API client for Wishfly. Feature requests and voting without leaving your app.
example/wishfly_api_client_example.dart
import 'package:wishfly_api_client/wishfly_api_client.dart';
void main() async {
final apiClient = WishflyApiClient(apiKey: "your-api-key");
final projects = await apiClient.getProjects();
print(projects);
}