Notification constructor

Notification({
  1. required ComparisonOperator comparisonOperator,
  2. required NotificationType notificationType,
  3. required double threshold,
  4. NotificationState? notificationState,
  5. ThresholdType? thresholdType,
})

Implementation

Notification({
  required this.comparisonOperator,
  required this.notificationType,
  required this.threshold,
  this.notificationState,
  this.thresholdType,
});