normalizedValue property
      
      double?
      get
      normalizedValue
      
    
    
The normalized value of the progress.
Implementation
double? get normalizedValue {
  if (progress == null) {
    return null;
  }
  return (progress! - min) / (max - min);
}