@@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
2121
2222``` yml
2323dependencies :
24- appwrite : ^12.0.0-rc.4
24+ appwrite : ^12.0.0-rc.5
2525` ` `
2626
2727You can install packages from the command line:
@@ -138,10 +138,7 @@ When trying to connect to Appwrite from an emulator or a mobile device, localhos
138138Account account = Account(client);
139139final user = await account
140140 .create(
141- userId: ID.unique(),
142- email: 'me@appwrite.io',
143- password: 'password',
144- name: 'My Name'
141+ userId: ID.unique(), email: "email@example.com", password: "password", name: "Walter O'Brien"
145142 );
146143```
147144
@@ -166,10 +163,7 @@ void main() {
166163
167164 final user = await account
168165 .create(
169- userId: ID.unique(),
170- email: 'me@appwrite.io',
171- password: 'password',
172- name: 'My Name'
166+ userId: ID.unique(), email: "email@example.com", password: "password", name: "Walter O'Brien"
173167 );
174168}
175169```
@@ -181,7 +175,7 @@ The Appwrite Flutter SDK raises `AppwriteException` object with `message`, `type
181175Account account = Account(client);
182176
183177try {
184- final user = await account.create(userId: ID.unique(), email: ‘ email@example.com’, password: ‘ password’ , name: ‘name’ );
178+ final user = await account.create(userId: ID.unique(), email: " email@example.com", password: " password" , name: "Walter O'Brien" );
185179 print(user.toMap());
186180} on AppwriteException catch(e) {
187181 //show message to user or do other operation based on error as required
0 commit comments