LowBatteryConfig constructor

const LowBatteryConfig({
  1. double threshold = 0.15,
  2. Duration throttleInterval = const Duration(minutes: 5),
  3. bool disableAutoSync = false,
})

Creates a low battery configuration.

Implementation

const LowBatteryConfig({
  this.threshold = 0.15,
  this.throttleInterval = const Duration(minutes: 5),
  this.disableAutoSync = false,
});