notificationsFromFirebase method

List<PeamanNotification> notificationsFromFirebase(
  1. QuerySnapshot<Map<String, dynamic>> colSnap
)

Implementation

List<PeamanNotification> notificationsFromFirebase(
  QuerySnapshot<Map<String, dynamic>> colSnap,
) {
  return colSnap.docs
      .map((doc) => PeamanNotification.fromJson(doc.data()))
      .toList();
}