1
0
Fork 0
mirror of synced 2024-07-17 20:36:10 +12:00
appwrite/docs/sdks/dart/GETTING_STARTED.md

21 lines
758 B
Markdown
Raw Normal View History

2021-03-09 00:19:18 +13:00
## Getting Started
### Initialize & Make API Request
Once you add the dependencies, its extremely easy to get started with the SDK; All you need to do is import the package in your code, set your Appwrite credentials, and start making API calls. Below is a simple example:
```dart
import 'package:dart_appwrite/dart_appwrite.dart';
void main() async {
Client client = Client();
.setEndpoint(
'http://[HOSTNAME_OR_IP]/v1') // Make sure your endpoint is accessible
.setProject('5ff3379a01d25') // Your project ID
.setKey('cd868c7af8bdc893b4...93b7535db89')
2021-03-10 14:36:25 +13:00
2021-03-09 00:19:18 +13:00
Users users = Users(client);
2021-03-10 14:36:25 +13:00
2021-03-09 00:19:18 +13:00
final response = await users.create(email: email@example.com,password: password, name: name);
print(response.data);
}
```