formatStringToDate property

String get formatStringToDate

Implementation

String get formatStringToDate {
  if (this != null) {
    try {
      return DateTime.parse(this!).toDate;
    } catch (_) {
      return "";
    }
  }
  return "";
}