secondsToDateTime function

DateTime secondsToDateTime(
  1. int json
)

Implementation

DateTime secondsToDateTime(int json) {
  return DateTime.fromMillisecondsSinceEpoch(json * 1000);
}