-
-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
update examples #205
update examples #205
Conversation
unreal0
commented
Jun 23, 2019
- update gradle to 5.1
- add livequery example
@@ -101,7 +103,7 @@ class LiveQuery { | |||
if (_debug) { | |||
print('$_printConstLiveQuery: Done'); | |||
} | |||
}, onError: (Error error) { | |||
}, onError: (error) { |
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.
Is this necessary? All variables should have Types inferred
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.
Yes , I don't know why it doesn't work when you define the type it's throw exception.
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.
The inferred type in onError is "Object" not "Error".
onError: (Object o) {
Error error = o;
}
or
You can leave the type, dart will assign the type Object when passing to function.
@@ -121,10 +124,10 @@ class _ParseResponseBuilder { | |||
/// Handles a response with a single result object | |||
T _handleSingleResult<T>( | |||
T object, Map<String, dynamic> map, bool createNewObject) { | |||
if (createNewObject && object is ParseCloneable) { | |||
return object.clone(map); | |||
} else if (object is ParseObject) { |
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.
Why has this changed? It works correctly now? Seems like an unnecessary change?
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.
Hey, please can you move this merge request to the branch release/1.0.23
Thanks in advance!