WindowsProgressBar constructor

WindowsProgressBar({
  1. required String id,
  2. required String status,
  3. required double? value,
  4. String? title,
  5. String? label,
})

Creates a progress bar for a Windows notification.

Implementation

WindowsProgressBar({
  required this.id,
  required this.status,
  required this.value,
  this.title,
  this.label,
});