AndroidBatteryInfo constructor

AndroidBatteryInfo({
  1. int? batteryCapacity,
  2. int? batteryLevel,
  3. int? chargeTimeRemaining,
  4. ChargingStatus? chargingStatus,
  5. int? currentAverage,
  6. int? currentNow,
  7. String? health,
  8. String? pluggedStatus,
  9. bool? present,
  10. int? remainingEnergy,
  11. int? scale,
  12. String? technology,
  13. int? temperature,
  14. int? voltage,
})

Implementation

AndroidBatteryInfo({
  this.batteryCapacity,
  this.batteryLevel,
  this.chargeTimeRemaining,
  this.chargingStatus,
  this.currentAverage,
  this.currentNow,
  this.health,
  this.pluggedStatus,
  this.present,
  this.remainingEnergy,
  this.scale,
  this.technology,
  this.temperature,
  this.voltage,
});