getTodayEthiopianString static method

String getTodayEthiopianString({
  1. String separator = '/',
})

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']}';
}