removeHyphenGetDate function

dynamic removeHyphenGetDate(
  1. String dateTime
)

function to remove Hyphens

Implementation

removeHyphenGetDate(String dateTime) {
  final date = dateTime.split('-');
  return date[0];
}