NotificationInfo constructor

NotificationInfo(
  1. {required bool isEnabled,
  2. required Map<String, String> feedChannels,
  3. required int settingsUpdatedAt,
  4. String? templateListToken}
)

Implementation

NotificationInfo({
  required this.isEnabled,
  required this.feedChannels,
  required this.settingsUpdatedAt,
  this.templateListToken,
});