PreferenceSection constructor

PreferenceSection({
  1. required String title,
  2. required String id,
  3. required List<CourierUserPreferencesTopic> topics,
})

Implementation

PreferenceSection({
  required this.title,
  required this.id,
  required this.topics,
});