JalaliRange constructor

const JalaliRange({
  1. required Jalali start,
  2. required Jalali end,
})

Creates a date range for the given start and end Jalali.

start and end must be non-null.

Implementation

const JalaliRange({
  required this.start,
  required this.end,
});