1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00

changes made dart EXAMPLES.md

This commit is contained in:
Pratik Gupta 2023-10-17 18:12:29 +05:30 committed by GitHub
parent 7721f29d0e
commit 2d123f60e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,11 +18,11 @@ Create a new user:
Users users = Users(client);
User result = await users.create(
ID.unique(),
email = 'email@example.com',
phone = '+123456789',
password = 'password',
name = "Walter O'Brien"
userId: '[USER_ID]',
email: 'email@example.com',
phone: '+123456789',
password: 'password',
name: "Walter O'Brien"
);
```