Constraints constructor

Constraints({
  1. required NetworkType networkType,
  2. bool? requiresBatteryNotLow,
  3. bool? requiresCharging,
  4. bool? requiresDeviceIdle,
  5. bool? requiresStorageNotLow,
})

Implementation

Constraints({
  required this.networkType,
  this.requiresBatteryNotLow,
  this.requiresCharging,
  this.requiresDeviceIdle,
  this.requiresStorageNotLow,
});