WeaponStats constructor

const WeaponStats(
  1. double fireRate,
  2. int magazineSize,
  3. double runSpeedMultiplier,
  4. double equipTimeSeconds,
  5. double reloadTimeSeconds,
  6. double firstBulletAccuracy,
  7. int shotgunPelletCount,
  8. String wallPenetration,
  9. String? feature,
  10. String? fireMode,
  11. String? altFireType,
  12. WeaponAdsStats? adsStats,
  13. WeaponShotgunStats? altShotgunStats,
  14. WeaponBurstStats? airBurstStats,
  15. List<WeaponDamageRange> damageRanges,
)

Implementation

const WeaponStats(
    this.fireRate,
    this.magazineSize,
    this.runSpeedMultiplier,
    this.equipTimeSeconds,
    this.reloadTimeSeconds,
    this.firstBulletAccuracy,
    this.shotgunPelletCount,
    this.wallPenetration,
    this.feature,
    this.fireMode,
    this.altFireType,
    this.adsStats,
    this.altShotgunStats,
    this.airBurstStats,
    this.damageRanges);