getFormatedDateWithSlash static method
Implementation
static String getFormatedDateWithSlash(String? datetime) {
if(datetime != null) {
final parsedDate = convertToDateTime(datetime);
if(parsedDate != null) {
return parsedDate.stringFormatWithSlash;
}
}
return "";
}