PrayerAdjustments constructor

PrayerAdjustments({
  1. int fajr = 0,
  2. int sunrise = 0,
  3. int dhuhr = 0,
  4. int asr = 0,
  5. int maghrib = 0,
  6. int isha = 0,
})

Gets a PrayerAdjustments object to offset prayer times fajr offset from fajr in minutes sunrise offset from sunrise in minutes dhuhr offset from dhuhr in minutes asr offset from asr in minutes maghrib offset from maghrib in minutes isha offset from isha in minutes

Implementation

PrayerAdjustments(
    {this.fajr = 0,
    this.sunrise = 0,
    this.dhuhr = 0,
    this.asr = 0,
    this.maghrib = 0,
    this.isha = 0});