getgroupchats method
Implementation
getgroupchats(String groupid) async {
return groups
.doc(groupid)
.collection("messages")
.orderBy("time")
.snapshots();
}
getgroupchats(String groupid) async {
return groups
.doc(groupid)
.collection("messages")
.orderBy("time")
.snapshots();
}