1
0
Fork 0
mirror of synced 2024-06-23 08:40:58 +12:00
This commit is contained in:
Damodar Lohani 2021-03-10 07:21:25 +05:45
parent b087d8ffc3
commit e157ac9584

View file

@ -1,17 +1,5 @@
## Getting Started
[Add Appwrite](https://github.com/appwrite/sdk-for-dart) SDK to your projects **pubspec.yaml** dependencies.
```yaml
dependencies:
Dart_appwrite: ^0.1.0
```
Then get the dependencies by running
```bash
dart pub get
```
### 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:
@ -24,7 +12,9 @@ void main() async {
'http://[HOSTNAME_OR_IP]/v1') // Make sure your endpoint is accessible
.setProject('5ff3379a01d25') // Your project ID
.setKey('cd868c7af8bdc893b4...93b7535db89')
Users users = Users(client);
final response = await users.create(email: email@example.com,password: password, name: name);
print(response.data);
}