getAllSettings method

Stream<List<AppSettings>> getAllSettings()

Implementation

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