getTodayEthiopianString static method
Get today's Ethiopian date as formatted string
Implementation
static String getTodayEthiopianString({String separator = '/'}) {
final today = getTodayEthiopian();
return '${today['day']}$separator${today['month']}$separator${today['year']}';
}