NotificationProperties constructor

NotificationProperties({
  1. required String title,
  2. required String text,
  3. required String subText,
  4. required String ticker,
  5. required bool showChronometer,
})

Implementation

NotificationProperties({
  required this.title,
  required this.text,
  required this.subText,
  required this.ticker,
  required this.showChronometer,
});