getAllDaysInMonth property
List<EthiopianDateTime>
get
getAllDaysInMonth
Implementation
List<EthiopianDateTime> get getAllDaysInMonth =>
List<EthiopianDateTime>.generate(
totalDaysInMonth,
(i) => EthiopianDateTime(year, month, i + 1),
);