Preferences constructor

Preferences({
  1. String language = '',
  2. Set<String> pinnedStudies = const {},
  3. Map<String, dynamic> studyFiltering = const {},
})

Implementation

Preferences({
  this.language = '',
  this.pinnedStudies = const {},
  this.studyFiltering = const {},
});