extToCustomFormattedDate method
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);
}