UserSetting constructor

UserSetting({
  1. required int user,
  2. required bool orderUpdateNotification,
  3. required bool promotionNotification,
  4. required int id,
})

Implementation

UserSetting({
  required this.user,
  required this.orderUpdateNotification,
  required this.promotionNotification,
  required this.id,
});