time_util.dart 143 B

12345678
  1. class TimeUtil {
  2. static DateTime getDateTime(json) {
  3. if (json == null) {
  4. return null;
  5. }
  6. return DateTime.parse(json);
  7. }
  8. }