removeHyphenGetDate function
function to remove Hyphens
Implementation
removeHyphenGetDate(String dateTime) {
final date = dateTime.split('-');
return date[0];
}
function to remove Hyphens
removeHyphenGetDate(String dateTime) {
final date = dateTime.split('-');
return date[0];
}