getgroupchats method

dynamic getgroupchats(
  1. String groupid
)

Implementation

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