1
0
Fork 0
mirror of synced 2024-06-14 08:44:49 +12:00

Rectified flutter GETTING_STARTED.md

Removed phone number from account.create() function as it does not accept it.
This commit is contained in:
Pratik Gupta 2023-10-24 09:07:04 +05:30 committed by GitHub
parent c2ce7d0aa1
commit daec743e8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,7 @@ When trying to connect to Appwrite from an emulator or a mobile device, localhos
Account account = Account(client);
final user = await account
.create(
userId: ID.unique(), email: "email@example.com", phone: "+123456789", password: "password", name: "Walter O'Brien"
userId: ID.unique(), email: "email@example.com", password: "password", name: "Walter O'Brien"
);
```
@ -130,7 +130,7 @@ void main() {
final user = await account
.create(
userId: ID.unique(), email: "email@example.com", phone: "+123456789", password: "password", name: "Walter O'Brien"
userId: ID.unique(), email: "email@example.com", password: "password", name: "Walter O'Brien"
);
}
```
@ -142,7 +142,7 @@ The Appwrite Flutter SDK raises `AppwriteException` object with `message`, `type
Account account = Account(client);
try {
final user = await account.create(userId: ID.unique(), email: "email@example.com", phone: "+123456789", password: "password", name: "Walter O'Brien");
final user = await account.create(userId: ID.unique(), email: "email@example.com", password: "password", name: "Walter O'Brien");
print(user.toMap());
} on AppwriteException catch(e) {
//show message to user or do other operation based on error as required