1
0
Fork 0
mirror of synced 2024-06-01 18:39:57 +12:00

Update dart EXAMPLES.md

This commit is contained in:
Pratik Gupta 2023-10-19 00:52:39 +05:30 committed by GitHub
parent ea282a1761
commit 6c4983f65f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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