DeviceSettingsModel constructor Null safety

DeviceSettingsModel(
  1. {bool? ignoringBatteryOptimizations,
  2. bool? isPowerSaving,
  3. bool? gpsEnabled}
)

Implementation

DeviceSettingsModel({
  this.ignoringBatteryOptimizations,
  this.isPowerSaving,
  this.gpsEnabled,
});