var queryRef = f.child('/users3')
.orderByChild('createdDate')
.startAt(priority: lastPriority)
.limitToFirst(pageSize + 1);To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/ba14f24d-8237-4e57-b944-218e0ecd22b0%40googlegroups.com.--
You received this message because you are subscribed to the Google Groups "Firebase Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to firebase-tal...@googlegroups.com.
To post to this group, send email to fireba...@googlegroups.com.
var queryRef = f.child('/users')
.orderByChild('createdDate')
.startAt(priority: lastPriority)
.limitToLast(pageSize + 1);
...
queryRef.onChildAdded.listen((e) {
var user = e.snapshot.val();
lastPriority = user['createdDate'];
...
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/667c01b2-07e4-4f61-af05-2c80c2a382d9%40googlegroups.com.