PreferenceChannel constructor

PreferenceChannel({
  1. bool? email,
  2. bool? sms,
  3. bool? inApp,
  4. bool? chat,
  5. bool? push,
})

Implementation

PreferenceChannel({
  this.email,
  this.sms,
  this.inApp,
  this.chat,
  this.push,
});