dateOnly static method

Jalali dateOnly(
  1. Jalali date
)

Returns a Jalali with the date of the original, but time set to midnight.

Implementation

static Jalali dateOnly(Jalali date) {
  return Jalali(date.year, date.month, date.day);
}