i use ubuntu server and install appwrite (docker) when i login in flutter: account.createEmailPasswordSession(email: email, password: password) Error: Unhandled Exception: type 'Null' is not a subtype of type 'bool' the error in appwrite 14.0.0 package target.dart file (targets: List<Target>.from(map['targets'].map((p) => Target.fromMap(p))),)
factory Target.fromMap(Map<String, dynamic> map) { return Target( $id: map['$id'].toString(), $createdAt: map['$createdAt'].toString(), $updatedAt: map['$updatedAt'].toString(), name: map['name'].toString(), userId: map['userId'].toString(), providerId: map['providerId']?.toString(), providerType: map['providerType'].toString(), identifier: map['identifier'].toString(), expired: map['expired'], // this is null ); }
Recommended threads
- [SOLVED] curl error Number: 6 — function...
Hello, I invested a lot of time in this error in a fresh install of appwrite 1.8.1 and lasted until fix, this if for helping anyone that can have the same weird...
- android platform invaild origina
It happened today suddenly. Our app says invalid origin. And appwrite cloud says every time we tried to add the app to it: "param platformId" is not optional.
- Team invite - 500 error - no email
When executing ```dart await _repository.teams.createMembership( teamId: event.listId, roles: ['member'], email: event.email, url: 'xxxx', ); ``` I se...