BankAlertPreference constructor

const BankAlertPreference({
  1. required BankNotificationType type,
  2. bool push = false,
  3. bool email = false,
  4. bool sms = false,
  5. bool locked = false,
})

Implementation

const BankAlertPreference({
  required this.type,
  this.push = false,
  this.email = false,
  this.sms = false,
  this.locked = false,
});