Notifications constructor

Notifications({
  1. String? completed,
  2. String? error,
  3. String? progressing,
  4. String? warning,
})

Implementation

Notifications({
  this.completed,
  this.error,
  this.progressing,
  this.warning,
});