DownloadProgressStyle constructor

const DownloadProgressStyle({
  1. TextStyle? statusTextStyle,
  2. TextStyle? percentageTextStyle,
  3. TextStyle? bytesTextStyle,
  4. double progressBarHeight = 6.0,
  5. Color? progressBarColor,
  6. Color? progressBarBackgroundColor,
  7. double spacing = 16.0,
  8. String cancelText = 'Cancel',
})

Implementation

const DownloadProgressStyle({
  this.statusTextStyle,
  this.percentageTextStyle,
  this.bytesTextStyle,
  this.progressBarHeight = 6.0,
  this.progressBarColor,
  this.progressBarBackgroundColor,
  this.spacing = 16.0,
  this.cancelText = 'Cancel',
});