CustomerSettings constructor

CustomerSettings({
  1. bool? newMessage,
  2. bool? lessonCanceled,
  3. bool? newsFromTutorhouse,
  4. bool? smsNewMessage,
  5. bool? paymentMade,
  6. bool? newInvitation,
})

Returns a new CustomerSettings instance.

Implementation

CustomerSettings({
  this.newMessage,
  this.lessonCanceled,
  this.newsFromTutorhouse,
  this.smsNewMessage,
  this.paymentMade,
  this.newInvitation,
});