getAllSettings method
Implementation
Stream<List<AppSettings>> getAllSettings() =>
FirebaseFirestore.instance.collection('settings').snapshots().map((event) => event.docs.map((e) => AppSettings.fromJson(e.data())).toList());
Stream<List<AppSettings>> getAllSettings() =>
FirebaseFirestore.instance.collection('settings').snapshots().map((event) => event.docs.map((e) => AppSettings.fromJson(e.data())).toList());