-
Notifications
You must be signed in to change notification settings - Fork 189
Flutter Response Model with Refactored SDK #251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flutter Response Model with Refactored SDK #251
Conversation
abnegate
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where there's a list type, what do you think about (and would it be possible without coupling with Appwrite) removing the wrapper, e.g. returning Future<List<Document>> directly instead of Future<DocumentList>? It seems redundant since we can get sum from the languages array type (.size(), .length, .Count etc.)
| final rtsub = realtime.subscribe(["tests"]); | ||
|
|
||
| await Future.delayed(Duration(seconds: 4)); | ||
| await Future.delayed(Duration(seconds: 5)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to delay at both the start and end of the test?
No description provided.