FetchSettings constructor

FetchSettings({
  1. int? dayOfMonth,
  2. String? dayOfWeek,
  3. bool? enabled,
  4. String? fetchUri,
  5. String? frequency,
  6. String? password,
  7. TimeOfDay? timeOfDay,
  8. String? timeZone,
  9. String? username,
})

Implementation

FetchSettings({
  this.dayOfMonth,
  this.dayOfWeek,
  this.enabled,
  this.fetchUri,
  this.frequency,
  this.password,
  this.timeOfDay,
  this.timeZone,
  this.username,
});