penaltiesPresent property
      
      double?
      get
      penaltiesPresent
      
    
    
Penalties present
Implementation
double? get penaltiesPresent => _penaltiesPresent;
      
      set
      penaltiesPresent
      (double? value) 
      
    
    
    
Implementation
set penaltiesPresent(double? value) {
  _penaltiesPresent = value;
  notifyListeners();
}