weekday property

int weekday

First Day of the Month

var twoMonthAgo = EtDatetime(year:2012, month: 4);
assert(twoMonthAgo.weekday == 0) // ሰኞ

Implementation

int get weekday => (yearFirstDay + ((month - 1) * 2)) % 7;