extToCustomFormattedDate method

String extToCustomFormattedDate({
  1. String outputDateFormat = 'dd-MM-yyyy',
  2. String originFormatDate = 'yyyy-MM-dd',
  3. String originLocale = 'ID',
})

Implementation

String extToCustomFormattedDate({
  String outputDateFormat = 'dd-MM-yyyy',
  String originFormatDate = 'yyyy-MM-dd',
  String originLocale = 'ID',
}) {
  DateTime temp = extToDateTime(
    originFormatDate: originFormatDate,
    locale: originLocale,
  );
  return temp.toFormattedString(outputDateFormat: outputDateFormat);
}